Home


Papers and Preprints

CV

Courses


Interesting links

 

 

Unix commands

Secure copy: scp -r stephens@lisbon2.stat.washington.edu:pathname target_directory

Batch commands:

lsload: lists load on machines in cluster

bjobs: lists jobs executing

bjobs -p: lists reasons for pending jobs

bkill: kills jobs (by number, obtained from bjobs)

Finding big files, or files that have changed

find -ctime -1: find all files that have changed in last 1 days

du -k -s *: summary of disk use

find . -size +10240k : find files >1Mb in size

Profiling: compile with -a -pg, and then use gprof -l -q -p -Ax executablename ... (most useful options listed)

Documentation

PGPLOT


UW - Statistics