Linux命令创建名为'test1'的空文件

时间:2014-09-19 16:25:55

标签: linux networking network-programming command computer-science

输入Linux命令以在“系统”目录中创建名为“test1”的空文件(您仍在主目录中)。

1 个答案:

答案 0 :(得分:1)

假设'系统'是当前目录的子目录: touch systems/test1

假设您只知道目录'系统'是当前目录的目录树中的一些子目录:find . -name systems -type d -exec touch "{}/test1" \;将创建这样的文件。或者,find . -name systems -type d -execdir touch systems/test1 \;也是如此。但是,两者都将在名为' systems'的每个子目录中执行此操作。在当前目录树中。我们可以将该操作仅限于第一个,最后一个或其他一些标准,但可能的排列列表太长了。

您确实没有提供足够的信息来提供完整的答案。