c – Plink传递参数

plink user@10.220.60.xx -t '/home/user/test/testpgm'

我可以使用上面的plink cmd在windows机器上运行以下程序,该程序驻留在Linux机器上.

#include<stdio.h>
int main(int argc,char *argv[])
{
   int i;
   char buf[30];
   printf("Test Pgm \n");
   printf("No of Arguments=%d\n",argc);
   printf("Enter a string:");
   fflush(stdout);
   gets(buf);
   printf("Input str:%s \n",buf);

   return 0;
}

gcc test.c -o testpgm

问题:如何将命令行参数传递给此函数?
我试过了

plink user@10.220.60.xx -t '/home/user/test/testpgm arg1'

bash: /home/user/test/testpgm arg1: No such file or directory

解决方法:

shell将引号内的字符串视为单个单词,这意味着plink尝试执行程序/ home / user / test / testpgm arg1.显然这不起作用.

你要做的很简单:省略引号!

$plink user@10.220.60.xx -t /home/user/test/testpgm arg1
上一篇:windows – Plink在连接时不会提供bashrc或bash_profile


下一篇:话题通信实现C++