FTPサーバのカレントディレクトリを指定したディレクトリに変更します。指定するディレクトリ名に~を指定した場合、FTPサーバのカレントディレクトリをIT専科TOPディレクトリに変更します。
cd [ディレクトリ名]
FTPサーバ上のカレントディレクトリを変更します。
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.