额,目测没有这样的程序。
不过可以自己写一个c的实现
#include <stdio.h>#include <stdlib.h>
int main(int argc, char *argv[])
{
int i, res = 0
for (i = 1 i < argc i++)
res += atoi(argv[i])
printf("%d", res)
return 0
}
匆忙写的,可能有问题,见谅。
编译后用 ./a.out 1 2 3 4 5...... numberN调用即可。
#!/bin/bashn=1
for i in `cat 1.txt`do # 循环1.txt
num=`sed -n "${n}p" 2.txt` # 获取2.txt对行的数字
sum=$(($num + $i)) # 两数相加
echo $sum # 打印结果
n=$(($n + 1))
done
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)