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.
如何在 UNIX ssh 中将同一目录中除一个以外的所有文件移动到该目录中?
例如。拥有备份目录并将所有其他文件移动到备份中
提前致谢
使用rsync是一种可能性
rsync
rsync -av from/ to/ --exclude=file_to_exclude
有关该rsync命令的更多信息:http: //linux.about.com/library/cmd/blcmdl1_rsync.htm