cd

FTPサーバのカレントディレクトリを指定したディレクトリに変更します。指定するディレクトリ名に~を指定した場合、FTPサーバのカレントディレクトリをIT専科TOPディレクトリに変更します。


書式

cd [ディレクトリ名]

▲PageTop

実行例

FTPサーバ上のカレントディレクトリを変更します。

  1. 現在のカレントディレクトリのパスを表示します。(「pwd」コマンドの実行)
  2. カレントディレクトリ内の一覧を表示します。(「ls」コマンドの実行)
  3. カレントディレクトリを変更します。
  4. 現在のカレントディレクトリのパスを表示します。(「pwd」コマンドの実行)

実行結果

ftp> pwd
257 "/usr/local/sampledir01" is current directory.
ftp> ls
227 Entering Passive Mode (192,168,1,20,149,64).
150 Opening ASCII mode data connection for file list
drwxr-xr-x   2 yabushita samplegroup     4096 Oct 25 21:44 sampledir02
226 Transfer complete.
ftp> cd sampledir02
250 CWD command successful
ftp> pwd
257 "/usr/local/sampledir01/sampledir02" is current directory.
        

▲PageTop