📜  .run ubuntu 中的文件 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:41.131000             🧑  作者: Mango

代码示例1
#Assume the file is called some-app.run and is in the folder /home/user/Downloads. You will need to modify these instructions to fit your situation.

#1:
cd /home/user/Downloads

#2:
chmod +x some-app.run

#3:
./some-app.run

#if step 3 fails with a message including 'permission denied', try entering sudo ./some-app.run (you will need to enter your password for this).