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.
我需要在远程目录之间移动文件。它始终是多个文件,并且没有可以使用的命名约定。有没有办法使用带通配符的重命名命令?
例如:
rename /dir1/dir2/* /dir1/dir2/history/
这不起作用,它返回以下错误:
Couldn't rename file "/dir1/dir2/*" to "/dir1/dir2/history": No such file or directory
建议高度赞赏。
我不知道rename,这是一个 SFTP 命令吗?
rename
无论如何,您不必使用 SFTP。您可以像这样使用 SSH:
ssh user@fqdn "mv /dir1/dir2/* /dir1/dir2/history/"