Rumah > Artikel > Operasi dan penyelenggaraan > linux如何运行程序
linux如何运行程序
1、chmod 空格"+x" 空格 你的sh文件名 (+x是一个整体,不要拆开)。
2、输入"./你的sh文件名" 即可执行。
举例:
1 chmod +x helloworld.sh。
2 ./helloworld.sh。
首先你要让文件有能够执行的权限,比如你的文件是a.sh那么你可以,chmod +x a.sh;然后运行文件就可以了。
这样运行是a.sh在当前工作目录,如果文件没在当前目录,那么就需要用绝对路径来执行,比如:/opt/a.sh;/opt/test/a.sh。
推荐:linux系统入门
Atas ialah kandungan terperinci linux如何运行程序. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!