我已经看过了,但找不到任何东西。例如,我使用的 TTS 程序可让您执行以下操作:
~#festival -tts | echo "I am to be spoken"
这真的很好,但是对于我使用的程序,例如 hexdump,我不知道如何将文本输入其中。我真的可以使用其中的一些东西,我尝试过(但失败)的一些示例如下:
~#gtextpad < dmesg
//(how do I put the contents into the text pad for display? not just into a file)
~#hexdump | echo "I am to be put into hexdump"
//(How do I get hexdump to read the echo? It normally reads a file such as foo.txt..)
最佳答案
这里有一些方法可以将文本传递给 hexdump
标准:echo "text" | hexdump
这里的文件
hexdump <<EOF
text
EOF
处理整个文件
hexdump file
关于Linux:我如何正确地将文本传送到程序中?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2216016/