Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,从下面的问题: 如何连续显示其最后几行内容的文件
我有一个基于最佳答案的新问题,作者是 William Pursell。如何编写自定义命令,例如 watch2。它运行如下:
$>watch2 job.sta
因此,它将从命令行参数中获取文件名。我没有键入命令头和尾。
我已经尝试了很多。但我对引号符号很生气。这些符号只是停用命令。各位有什么要解开的吗?
非常感谢你们所有人。
你可以这样做
在文件 watch2
watch "head -n 2 $1; tail $1"
然后你可以像这样运行它
./watch2 job.sta