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.
我在我的服务器上创建了文件夹(即技巧)-“home”,其中有几个perl(.pl)文件
perl(.pl)
tt.pl、re.pl 等
现在我在名为“perl”的“home”文件夹中创建了新文件夹
并想在 perl 文件夹中移动 tt.pl 和 re.pl
是否有任何命令可以这样做(例如在 Windows 中剪切粘贴)?
注意:我在 windows xp 上使用 putty 0.60
这应该工作
mv - move (rename) files
mv [OPTION]... [-T] SOURCE DEST mv [OPTION]... SOURCE... DIRECTORY mv [OPTION]... -t DIRECTORY SOURCE...
在你的情况下:
mv tt.pl re.pl perl/
mv 主页/*.pl 主页/perl/
那是你要找的吗?