cat
我正在寻找与(但不是)相反的 unix 命令tac
。
我想要做
$ SOMECOMMAND /tmp/file
I type some content
for the file here
^D
$ cat /tmp/file
I type some content
for the file here
$
因此,我在运行命令后实际上输入了“我输入一些内容...”,然后它就被写入文件了。在你提出建议之前,是的,我非常了解编辑器——只是在寻找一些简写。
答案1
的反义词cat
是cat
。
$ cat > /tmp/file
I type some content
for the file here
^D
$ cat /tmp/file
I type some content
for the file here
$