在 putty 中将文件从一个位置移动到另一个位置
我在我的服务器上创建了文件夹(即精细)-“home”,其中有几个 perl(.pl)
文件,如
tt.pl、re.pl 等。
现在我在其中创建了新文件夹“home”文件夹名为“perl”
,并且想要在 perl 文件夹中移动 tt.pl 和 re.pl
是否有任何命令可以执行此操作(如 Windows 中的剪切粘贴)?
注意:我在 Windows XP 上使用 Putty 0.60
i have created folder on my server (ie finesse)- 'home' in which i have several perl(.pl)
files as
tt.pl, re.pl etc.
now i have created new folder in 'home' folder called 'perl'
and want to move tt.pl and re.pl in perl folder
is there any command to do so (like cut-paste in windows)?
note: i am using putty 0.60 on windows xp
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该有效
mv - move (rename) files
在您的情况下:
mv tt.pl re.pl perl/
This should work
mv - move (rename) files
In your case:
mv tt.pl re.pl perl/
mv home/*.pl home/perl/
这是您要找的吗?
mv home/*.pl home/perl/
Is that what you are looking for?