Linuxのディレクトリ操作

Linuxのごく簡単なディレクトリ操作に挑戦しました!!


tetsuo@tetsuo-desktop:~$ ls #カレントディレクトリのディレクトリとファイルを表示
2011  examples.desktop  テンプレート  ドキュメント  ピクチャ      公開
R     ダウンロード      デスクトップ  ビデオ        ミュージック
tetsuo@tetsuo-desktop:~$ cd 2011 #カレントディレクトリに含まれる2011ディレクトリに移動
tetsuo@tetsuo-desktop:~/2011$ ls
1101
tetsuo@tetsuo-desktop:~/2011$ cd 1101
tetsuo@tetsuo-desktop:~/2011/1101$ ls
110120_ネットワーク練習_2.txt  110122_gene1-gene2_relation.png
110121_Linux_R                 110122_シェルの練習
110121_gplot.png               110122_散布図
tetsuo@tetsuo-desktop:~/2011/1101$ pwd #カレントディレクトリを表示
/home/tetsuo/2011/1101
tetsuo@tetsuo-desktop:~/2011/1101$ cd #ホームディレクトリに移動
tetsuo@tetsuo-desktop:~$ pwd
/home/tetsuo
tetsuo@tetsuo-desktop:~$ cd /home/tetsuo/2011/1101
tetsuo@tetsuo-desktop:~/2011/1101$ pwd
/home/tetsuo/2011/1101
tetsuo@tetsuo-desktop:~/2011/1101$ mkdir /home/tetsuo/2011/1101/test # /home/tetsuo/2011/1101/testというディレクトリを作成
tetsuo@tetsuo-desktop:~/2011/1101$ test
tetsuo@tetsuo-desktop:~/2011/1101$ cd test
tetsuo@tetsuo-desktop:~/2011/1101/test$ mkdir -p test2/test3 #カレントディレクトリの下にtest2ディレクトリを作って、その下にtest3ディレクトリを作成する
tetsuo@tetsuo-desktop:~/2011/1101/test$ ls
test2
tetsuo@tetsuo-desktop:~/2011/1101/test$ cd test2
tetsuo@tetsuo-desktop:~/2011/1101/test/test2$ ls
test3
tetsuo@tetsuo-desktop:~/2011/1101/test/test2$ cd .. #一つ上のディレクトリに移動
tetsuo@tetsuo-desktop:~/2011/1101/test$ cd ../..   #2つ上のディレクトリに移動
tetsuo@tetsuo-desktop:~/2011$ cd ..          #一つ上のディレクトリに移動
tetsuo@tetsuo-desktop:~$ pwd              #カレントディレクトリを表示
/home/tetsuo
tetsuo@tetsuo-desktop:~$ exit                  #シェルを終了