- ls -l|sort -k 5rn,5 -k 9fd,9 ;sort by size du ;disk usage for current directory and all subdirectories du -s ;disk usage summary of the current directory
- if there is an uncompleted command/filename and tab completion dings at you, hitting control-d will show you the possibilities read the man on umask, brings up lots of commands setenv ;Show you your setting when entered alone. echo $VARIABLENAME ; outputs variable like, USER, or HOME jobs ; show which jobs are running, control-z puts a job in the background 4 is execute, 2 is write, 1 is read (aka octaganal) where 7 is read+write+execute, and 6 is execute+write which pico ;tells you where the program pico is located
chmod -R 755 <directory name> ;sets all files in directory to readable by all chmod 755 *.* ;change all except directories to 755 umask ;shows what umask is set to, 777-umask output is default permissions
- ; example, umask is 22, than default is 755
- ; place this command in your .login
stty erase <hit your previously unfunctional backspace now> ;sets delete key
fg %jobnumber ; brings job of jobnumber number to the foreground