Difference between revisions of "Basic linux commands everyone should know!"

From CUC3
Jump to navigation Jump to search
import>Jss43
m
import>Jss43
Line 2: Line 2:
   
 
You may want to read the computer office's [http://www-co.ch.cam.ac.uk/software/unix/booklet/ introduction to Unix booklet] .
 
You may want to read the computer office's [http://www-co.ch.cam.ac.uk/software/unix/booklet/ introduction to Unix booklet] .
  +
  +
A really useful guide to [http://www.tldp.org/LDP/abs/html/ bash scripting].
   
 
* ''mkdir''
 
* ''mkdir''

Revision as of 17:31, 29 April 2008

Here are a few simple linux commands that should make life a bit easier for you. Please everyone, add anything you think would be useful!

You may want to read the computer office's introduction to Unix booklet .

A really useful guide to bash scripting.

  • mkdir
mkdir newdir newdir2

This will create two new directories, newdir and newdir2

mkdir -p newdir/newdir2

This will create newdir and newdir/newdir2, even if the former doesn't exist.

  • xxdiff
xxdiff file1 file2

Much clearer than regular diff (graphical output).

  • svn

SVN Page

  • find

Can do so much, in a somewhat idiosyncratic manner! See this guide.