我看一本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
提示权限不够。
我应该怎么做?谢谢!
此帖出自
Linux与安卓论坛
一周热门 更多>