linux下调用程序的问题

2019-03-26 12:35发布

我看一本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
提示权限不够。
我应该怎么做?谢谢!

此帖出自Linux与安卓论坛
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
2条回答
chenbingjy
1楼-- · 2019-03-26 17:54
我明白了,testscript没有执行权限。
newofcortexm3
2楼-- · 2019-03-26 19:29
 精彩回答 2  元偷偷看……

一周热门 更多>