假设我有一个名为“foo”的文件。例如,我可以复制其内容:
gedit foo
ctrl+a ctrl+c
alt+f4
但是,我想知道我是否可以用类似以下的方法做同样的事情:
COMMAND foo
提前致谢 ! :)
答案1
也许您可以尝试使用命令重定向来复制(附加)文件 foo 的内容。
#cat foo > new.txt --> this will copy the contents of file foo to new.txt
#cat foo >> new1.txt --> this will append the contents of file foo to new1.txt
如果您的目的不是复制到其他文件而只是复制到缓冲区/剪贴板,那么尝试“xclip”
答案2
如果您只想复制文件:
cp /path/to/file/filename.extension /path/to/other/file/(new)filename.extention(2)
如果您想保留文件类型,请不要更改扩展名。