[求助] linux下调用程序的问题

chenbingjy   2015-11-5 13:45 楼主
我看一本liunx的书,有一个小程序
文件名叫testscript
内容是
#!/bin/bash
exit $@
还有另外一个文件,文件名叫macro.c
文件内容是:
#! /bin/bash

if ./testscript -1
then
    echo "testscript exit -1"
fi

if ./testscript 0
then
    echo "testscript exit 0"
fi

if ./testscript 1
then
    echo "testscript exit 1"
fi
这个文件调用testscript接受用户输入的参数,然后返回给父进程。
我这样运行macro.c

3.png
提示权限不够。
我应该怎么做?谢谢!

为江山踏坏了乌骓马,为社稷拉断了宝雕弓。

回复评论 (2)

我明白了,testscript没有执行权限。
为江山踏坏了乌骓马,为社稷拉断了宝雕弓。
点赞  2015-11-5 13:59
chmod +x
点赞  2015-12-4 15:27
电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 京公网安备 11010802033920号
    写回复