First, download Django-1.1.1.tar.gz. Then:

tar xzvf Django-1.1.1.tar.gz
cd Django-1.1.1
sudo python setup.py install

>ls -d */

In .bashrc,

define your own alias as follow:

————

alias cdma=’cd /usr/local/projects/wcdma/’

$ svn update <directorynameyouwanttoupdate>

In linux and unix, find command is very powerful command
the reasons are (from my opinions)
1. in linux, unix, every configurations are done in text
2. if you know some strings, you may want to find a file containing those strings
3. this will be extremely helpful when you work with linux system

$find . -exec grep “stringyouwanttofind” ‘{}’ \; -print

\; represents the end of argument of exec

{ } inserts each file

$find . -name “filenameyouwanttofind” -print

$ find . -name “*.py” -exec grep “stringyouwanttofind”  ‘{}’ \; -print

© 2011 Web Oom Suffusion theme by Sayontan Sinha
Switch to our mobile site
Top Footer