Chinaunix

标题: 求shell方法 [打印本页]

作者: rmqh    时间: 2007-02-12 10:53
标题: 求shell方法
程序如下:
  1. #include <stdio.h>

  2. main()
  3. {
  4.         int i;
  5.         char buf[1024];
  6.         memset(buf,0,sizeof buf);
  7.         printf("please input string: ");
  8.         scanf("%s",buf);
  9.         printf("you input is: %s\n",buf);
  10. }
复制代码


有没有办法通过shell发送一个字符串作为标准输入给程序?
作者: davistar    时间: 2007-02-12 11:04
#!/bin/bash
echo -n "please input your name:"
read name
echo "your name is:"$name


........
作者: rmqh    时间: 2007-02-12 11:16
上面的可能我没说好。
  1. #include <stdio.h>

  2. main()
  3. {
  4.         int i;
  5.         char buf[1024];
  6.         memset(buf,0,sizeof buf);
  7.         printf("please input string: ");
  8.         scanf("%s",buf);
  9.         printf("you input is: %s\n",buf);
  10. }
复制代码

gcc a.c -o a

用以上代码编译成二进制文件a,然后运行程序a等侍输入。
我想知道有不有方法能写个脚本(用C也行)发送一个字符串给运行的程序a做为scanf的输入。

前提是程序a是不能修改的。
作者: xuxingyu    时间: 2007-02-12 12:12
echo "aaa" |./a
作者: rmqh    时间: 2007-02-12 13:01
非常感谢!




欢迎光临 Chinaunix (http://bbs.chinaunix.net/) Powered by Discuz! X3.2