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.
我正在寻找将其标准输入打印到标准输出的 shell 命令。这个命令叫什么?我很惊讶我找不到它。
正常的实用程序是cat(1).
cat(1)
使用许多命令可以将标准输入打印到标准输出:
sed <file
或者
grep '' <file
awk '//' <file
perl -ple '' < file
tail +0 < file
或通常的
cat < file
并以上述形式 - 每个都是无用的