簡單的shell指令碼編寫和執行

2021-09-20 06:29:05 字數 703 閱讀 8122

vi ******shell.sh 

1 #!/bin/bash 這裡不是注釋,這句話的作用是標註接下來寫的內容是shell指令碼,不可省略

2 #author:pingfanzzz

3 4

5 echo 'this is my first shell script '

wq儲存退出後修改許可權

chmod 755 ******shell.sh

執行結果:

[root@localhost sh]# ./******shell.sh (相對路徑執行)

this is my first shell script

[root@localhost sh]# /root/sh/******shell.sh(絕對路徑執行)

this is my first shell script

[root@localhost sh]# bash ******shell.sh(bash執行,可以不給******shell賦予執行許可權)

this is my first shell script

windows編寫好的指令碼轉換成linux指令碼

yum -y install dos2unix

dos2unix 指令碼名稱 可以將windows下編寫的指令碼轉換成為linux可以執行的指令碼

Shell指令碼編寫和執行

bin bash echo hello world 為了使得使用者具有某個檔案的執行許可權,可以使用命令chmod命令.該命令的基本形式如下.chmod options filename其中,options表示各種許可權選項。使用者可以使用r w x這三個字母表示讀取 寫入和執行許可權,也可以使用數...

linux 簡單shell指令碼編寫

前幾天學習了一些shell指令碼編寫,今天把它記下來。下面的指令碼是修改電腦的ip位址 子網掩碼 閘道器。bin bash 這句話是指定指令碼的直譯器是bash read p please input ipaddr ip read p這個語句就是通過鍵盤讓自己輸入要輸入的內容 read p plea...

shell的簡單編寫及執行

sell指令碼 1.新建檔案 副檔名.sh 2.寫 3.給許可權,執行 x執行,絕對路徑,相對路徑 test.sh root test.sh vim a.sh bin bash 直譯器是誰 例 vima sh bin bash hello word echo hello word chmod x a...