Share Pastebin
Guest
Public paste!

ElectricAlan

By: a guest | Mar 9th, 2010 | Syntax: None | Size: 0.79 KB | Hits: 85 | Expires: Never
Copy text to clipboard
  1. unix concepts
  2.         tab completion
  3.         silent sucess
  4.         consistency
  5.         if in doubt, man pages (or ask firstyear)
  6.  
  7. unix commands
  8.         ls
  9.         cd
  10.         mdkir
  11.         rm
  12.         pwd
  13.         grep
  14.  
  15. clever usage   
  16.         ls -R | grep foo
  17.         grep foo < bar.txt
  18.         cd ~/
  19.         java Foo > FooOut.txt
  20.         java Bar >> BarOut.txt
  21.        
  22. svn
  23.         commit (ci)
  24.         checkout (co)
  25.         update (up)
  26.         add
  27.         delete (del, remove, rm)
  28.         move (mv, rename, rem)
  29.         info
  30.         cleanup
  31.  
  32. ant
  33.         show simple build.xml
  34.         encourage good repository structure
  35.         enables simple compilation and execution of code
  36.  
  37. ssh
  38.         ssh a1234567@uss.cs.adelaide.edu.au
  39.  
  40.         commiting work from uni
  41.                 ssh into uss
  42.                 cd into right directory
  43.                 add/commit required work
  44.  
  45.         killing xchat
  46.                 ssh into uss
  47.                 ssh into machine
  48.                 search for pid of xchat
  49.                         ps ax | grep xchat
  50.                         pidof xchat
  51.                 kill <pid>
  52.  
  53. ping tunneling