Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在学习 cmd line ftp 并且想知道如何在删除本地副本的同时将文件传输到远程目录。
这可能吗 ?
我不想转移然后运行删除命令,但到目前为止我所拥有的是:
mput *xml
哪个不会删除本地副本
您可以在大多数带有 bang ( !) 的命令行 ftp 程序中执行任意 shell 命令。所以我想你可以这样做:
!
ftp> !pwd /home/foo_user ftp> mput *xml ftp> ! rm *xml
但我认为这可能有点危险,因为你可能会无意中删除一些重要的东西