将一行和文件内容作为标准输入传递到程序中

发布于 12-01 11:23 字数 313 浏览 1 评论 0原文

我正在尝试将一个文件和一行代码传递到一个程序中,例如。

我的行:

i := 1;

我的文件(文件):

blah1
blah2
blah3

程序的输入:

i := 1;
blah1
blah2
blah3

我认为这将是一行,例如:

example < `echo "i := 1;\n" cat file`

或类似的内容

I'm trying to pass in a file and a single line of code into a program, say example.

My line:

i := 1;

My file (file):

blah1
blah2
blah3

Input to program:

i := 1;
blah1
blah2
blah3

I'm thinking it would be a one line such as:

example < `echo "i := 1;\n" cat file`

or something like that

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

野却迷人2024-12-08 11:23:46
{ echo 'i := 1;' ; cat myfile.txt ; } | example
{ echo 'i := 1;' ; cat myfile.txt ; } | example
提赋2024-12-08 11:23:46

你需要的是这里的字符串:

example <<< `echo "i:=1" && cat file`

来自 bash 手册:

3.6.7 Here Strings

A variant of here documents, the format is:

     <<< word

The word is expanded and supplied to the command on its standard input. 

What you need is here string:

example <<< `echo "i:=1" && cat file`

From bash manual:

3.6.7 Here Strings

A variant of here documents, the format is:

     <<< word

The word is expanded and supplied to the command on its standard input. 
蝶舞2024-12-08 11:23:46
(
echo "i := 1"
cat file
) | program
(
echo "i := 1"
cat file
) | program
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文