在GNU / Linux下 PS1 =“$”;出口PS1
我发现了一些使用此命令创建具有特定权限的文件的提示:
$ install -b -m 604 / dev / null test.php
在cat命令中创建带I / O重定向的文件的提示:
$ cat> test.php<< EOF
我想知道如何在不实际执行两次的情况下将它们组合起来? $ install -b -m 604 / dev / null test.php;猫> test.php<< EOF
答案 0 :(得分:0)
你可以使用Pipes。 信|管道
我无法在终端执行: cat test.php | grep你好
这里会发生的是cat的输出将是grep的输入