1h. UNIX Dev Notes
http://sunsite.utk.edu/UNIX-help/quickref.html
command > file      Redirect command output to file. Creates a file or overwrites an existing one.
command >> file     Redirect command output and append to file. Creates file or appends an existing one.
command < file      Use file as input for command.
cmd1 | cmd2         Pipe output of cmd1 to input of cmd2.
?  Single character wild card.
*   Anything wild card.
history    Show command history
!num    Repeat command with history number num
!str    Repeat last command starting with str
!!      Repeat entire last command line
!$      Repeat last word of last command line
u user (owner) g group o other (anyone)+ add permission - remove permissionr read w write x executeExample: chmod ug+x file Make file executable by user and group. Does not change other permissions.
1 execute 2 write 4 readExample: chmod 764 file Make file r+w+x for user, r+w for group and read-only for other users.
strace -f -eexecve COMMAND 2>&1 | grep EACC
echo $PATH |tr ‘:’ ‘\n’ |xargs ls -ld
diff -Baq-B Ignore blank lines -a Text only -q Only differences -y Two colum output -w Ignore whitespace differencesdiff -Baqy odm/dev/client/classes/odm/managers/SoundManager.as flash_dev/TRUNK/classes/odm/managers/SoundManager.as diff.txt diff -wq odm/dev/client/classes/odm/managers/SoundManager.as flash_dev/TRUNK/classes/odm/managers/SoundManager.as diff.txt================================================================================ NOTICE: The releases on this site are OUT OF DATE. Xdelta development has moved to code.google.com. Sourceforge was good throughout the years, but Subversion support at googlecode is great. Xdelta blog: http://xdelta.org--------------------------------------------------------------------------------