touch 新建 #touch 的使用很简单, 我们先去往 Documents 的文件夹, 里面已经有了 folder1 和 file1, 如果我们想新建一个 file2 使用下面的语句就好. 一个空文件就建立好了. $ touch file2 #如果想同时建立多个文件, 输入多个文件的名字, 以空格分开. $ touch file3 file4 file5 #文件的批量创建(比如创建文件名为1.txt到10.txt): $touch {1..10}.txt cp 复制 cp (copy) 是复…