Linux下面如何運行.sh文件

本文介紹Linux下面用命令如何運行.sh文件的方法,有兩種方法:blog

1、直接./加上文件名.sh,如運行hello.sh爲./hello.sh【hello.sh必須有x權限】權限

2、直接sh 加上文件名.sh,如運行hello.sh爲sh hello.sh【hello.sh能夠沒有x權限】方法

【步驟一】cd到.sh文件所在目錄im

好比以hello.sh文件爲例,以下圖img

【步驟二】給.sh文件添加x執行權限文件

好比以hello.sh文件爲例,chmod u+x hello.sh,以下圖co

【步驟三】./執行.sh文件ps

好比以hello.sh文件爲例,./hello.sh 便可執行hello.sh文件,以下圖

【步驟四】sh 執行.sh文件

以hello.sh文件爲例,sh hello.sh便可執行hello.sh文件,以下圖

相關文章
相關標籤/搜索