m****f 发帖数: 32 | 1 I like to use Unix ftp utility
I uploaded some *.jpg files to my directory /home/mydir on a
remote host, using
ftp> prompt
Interactive mode off
ftp> mput *.jpg
Then I think I should make my account neater and did
ftp> mkdir pic
Now, how can I mv these *.jpg files from /home/mydir to
/home/mydir/pic? I got stuck here. I did
ftp> ?
but did not find anything helpful. |
m****f 发帖数: 32 | 2 Does the silence of people indicate that there is no way I
can do this? :)
【在 m****f 的大作中提到】 : I like to use Unix ftp utility : I uploaded some *.jpg files to my directory /home/mydir on a : remote host, using : ftp> prompt : Interactive mode off : ftp> mput *.jpg : Then I think I should make my account neater and did : ftp> mkdir pic : Now, how can I mv these *.jpg files from /home/mydir to : /home/mydir/pic? I got stuck here. I did
|
m*****e 发帖数: 4193 | 3 Use a more advanced ftp client (WS_FTP will do).
【在 m****f 的大作中提到】 : Does the silence of people indicate that there is no way I : can do this? :)
|
n****t 发帖数: 39 | 4 ftp> rename foo.jpg pic/foo.jpg
I didn't figure out how to move multiple files at one time. wild card
character doesn't work here. Please let me know if you got it. |