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与安卓论坛
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。