コマンド | パラメータ(オプション 引数など) |
---|
コマンド(オプションなし) | 結果 | |
---|---|---|
ls | images index.html style.css |
script sample.html test.jpg |
現在のディレクトリにあるファイルやディレクトリの名前が表示されます |
コマンド(オプション l 付与) | 結果 | |||||||
---|---|---|---|---|---|---|---|---|
ls -l | drwxr-xr-x | 3 | testuser | user | 512 | Jun 1 2010 | images | |
drwxr-xr-x | 2 | testuser | user | 512 | Feb 3 2013 | script | ||
-rw-r--r-- | 1 | testuser | user | 31070 | Feb 3 2013 | index.html | ||
オプション l を付与すると、名前の他に更新日・サイズ・権限・所有者などが表示されます |
コマンド(引数にディレクトリを指定) | 結果 | |||||||
---|---|---|---|---|---|---|---|---|
ls ./images-fruits | apple apple.jpg |
banana.jpg | ||||||
引数にディレクトリを指定すると、そのディレクトリの中身を表示します。 |
コマンド(オプション・引数を付与) | 結果 | |||||||
---|---|---|---|---|---|---|---|---|
ls -l ./images-fruits | drwxr-xr-x | 5 | testuser | user | 512 | Mar 1 2013 | apple | |
-rwxrwxrwx | 1 | testuser | user | 7415 | Mar 2 2013 | apple.jpg | ||
-rw-r--r-- | 1 | testuser | user | 16384 | Mar 2 2013 | banana.jpg | ||
オプションと引数は同時に指定出来ます。 |
パス | ・・・・・・ | 対象までの経路を示します |
---|---|---|
相対パス | ・・・・・・ | 作業ディレクトリあるいは指定元のファイルを始点とした対象までの経路です。 |
絶対パス | ・・・・・・ | 決まった場所を始点とした対象までの経路です |
~ | ・・・・・・ | ~はお客様のアカウントのホームディレクトリを示します。 /home/アカウント名/example/と~/example/は同じディレクトリになります |
始点 (作業ディレクトリあるいは指定元のファイル) |
/home/user/public_html/images/jpg/ |
---|---|
対象1 | /home/user/public_html/images/jpg/sample.jpg |
対象2 | /home/user/public_html/images/test.txt |
対象3 | /home/user/public_html/index.html |
とした場合 |
相対パス | |
---|---|
対象1 | ./sample.jpg または sample.jpg |
対象2 | ../test.txt |
対象3 | ../../index.html |
絶対パス | ||
---|---|---|
対象1 | HTMLなど公開ファイルでの記述 | /images/jpg/sample.jpg |
CGIなどプログラムでの記述 | /home/testuser/public_html/images/jpg/sample.jpg | |
対象2 | HTMLなど公開ファイルでの記述 | /images/test.txt |
CGIなどプログラムでの記述 | /home/testuser/public_html/images/test.txt | |
対象3 | HTMLなど公開ファイルでの記述 | /index.html |
CGIなどプログラムでの記述 | /home/testuser/public_html/index.html |