-2

我一直在整个谷歌寻找这些命令的解释

find /tmp -name core -type f -print | xargs /bin/rm -f

好吧,我从网络本身得到了命令,并且那里也提到了解释。现在我知道该命令用于在名为“tmp”的目录中查找名为“core”的文件并删除该文件。我已经使用并检查了它,它工作得很好。

我的问题是我无法理解此命令中使用的术语,例如 -type f 和 xargs 的作用?还有如何根据我们的需要生成这样的命令(除非正确理解,否则显然不能),最大的问题是在谷歌中写什么以获得关于这个的帮助......我的意思是在什么主题下我可以期待这些。

请帮忙

问候。

4

1 回答 1

0

这是一串unix命令:

 find           // name of command (in this case, "find")

 arguments to 'find':
    /tmp        // where to look
    -name core  // name to look for, "core" (optional argument)
    -type f     // files only (not, eg, directories or files contents) 
                // (optional argument)
    -print      // output the list to standard output (STDOUT)

|               // name of command (otherwise known as
                // 'pipe') this is a little program that
                // takes the output from a previous process
                // (in this case, the output from 'find')
                // and pass it to another process as input  

 xargs          // name of command ('xargs') the program
                // that will accept the output from 'print'
                // as input (directed by 'pipe'). It provides
                // a robust way to process indefinitely
                // long lists by breaking them into smaller
                // lists and passing each sublist through
                // to its command argument

 /bin/rm        // name of command for xargs to execute 
                // on its input list ('rm' = remove)
      -f        // argument to rm, only remove files, not directories.

这就是 unix 的工作原理,它由许多具有模糊的 2 个字母名称的小型单一用途程序组成,这些程序专门用于一项任务。您将它们串在一起以完成更复杂的任务。

找出任何一个命令的作用的正确方法是使用“man”命令并将相关命令名称作为参数,例如

man find
man xargs
man rm

您将获得描述每个输入选项和输出可能性的详细信息页面。像“xargs”这样的名字也很容易用谷歌搜索,但可以理解的是“find”不是(也许试试“unix find”)。他们中的许多人都有维基百科页面......

也许您应该获得一份体面的 unix 指南...

于 2013-01-10T00:08:00.207 回答