当前位置: 技术问答>linux和unix
shell script能为c程序提供输入数据吗?
来源: 互联网 发布时间:2016-12-18
本文导语: 我想在shell script中使用gcc编译程序,执行程序,程序中如果需要从键盘输入数据,在shell script中能提供吗?也就是在shell script中能代替用户提供数据吗?如果可以,怎么实现? | 管道 echo "m...
我想在shell script中使用gcc编译程序,执行程序,程序中如果需要从键盘输入数据,在shell script中能提供吗?也就是在shell script中能代替用户提供数据吗?如果可以,怎么实现?
|
管道
echo "my input"|your_program
或者
your_progam
echo "my input"|your_program
或者
your_progam