touch sample
ls /home/vagrant/sample
cd /var/tmp
ls ../../home/vagrant/sample
cd ./
pwd
cd ../../home/vagrant
pwd
ls
ls -d /var/tmp
ls -ld /var/tmp
pwd ; ls
[tab]キーを押すと、候補があるとき候補が表示される。候補が一つだけなら、文字が補完される
矢印キーの上下で過去に入力したコマンドを再利用することが出来る
「control + c」キーで、実行中のコマンドをキャンセル出来る
cd /var/log
sudo tail -f messages
ls
pwd
cd /home; pwd
ls
ls -d /var/tmp
ls -l /home/vagrant/sample
ls -ld /var/tmp
touch /home/vagrant/test
mkdir /home/vagrant/Sample
cd /home/vagrant
cp test /var/tmp/
cp test /var/tmp/file_cp
cp -r Sample /var/tmp/
cp -r Sample /var/tmp/dir_cp
mv test /var/tmp/
mv Sample /var/tmp/
rm /var/tmp/test
rm -r /var/tmp/Sample