xecuting shell commands with bash
#!/bin/bash
# use backticks " ` ` " to execute shell command
echo `uname -o`
# executing bash command without backticks
echo uname -o
[jerry@localhost bin]$ ./echo.sh
GNU/Linux
uname -o
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/23895263/viewspace-697717/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- [Bash] while & until commandsWhile
- [Bash] ps & pgrep commands
- shell Bash變數變數
- bash shell tips
- mysql 使用 informatin_schema tables 建立 shell commandsMySqlORM
- Bash Shell 基礎特性
- Shell(Bash)學習· 總章
- android開發筆記之ADB Shell CommandsAndroid筆記
- bash shell 程式與磁碟資料
- shell程式設計–bash變數程式設計變數
- bash shell計算時間差
- Linux的Bash Shell詳解Linux
- linux自定義shell(bash)命令Linux
- 9.bash shell程式設計程式設計
- BASH shell set命令詳解(轉)
- Shell Script(bash)--教學例(轉)
- Linux深入探索04-Bash shellLinux
- HP-UX 安裝使用bash shellUX
- BASH SHELL 程式設計簡介(轉)程式設計
- 20天學會bash shell script (二)
- 20天會學bash shell script(一)
- 20 天學會bash shell script (三)
- shell和bash指令碼命令學習指令碼
- Shell Script(bash)--用於自動備份的Shell Script(轉)
- 執行shell指令碼報錯:-bash: ./test1.sh: /bin/bash^M: ...指令碼
- shell程式設計–bash變數介紹程式設計變數
- Linux中bash shell環境變數Linux變數
- bash shell指令碼執行方法總結指令碼
- Aix6.1 安裝 Bash Shell環境AI
- bash shell 實現快速排序演算法排序演算法
- BASH Shell的指令碼程式設計(轉)指令碼程式設計
- bash shell指令碼接受多個引數指令碼
- Mainframe CommandsAI
- bash shell實現2048小遊戲詳解遊戲
- 高階bash/shell指令碼程式設計指南指令碼程式設計
- 【Bash百寶箱】shell命令列快捷鍵大全命令列
- 12 Bash For Loop Examples for Your Linux Shell ScriptingOOPLinux
- Linux Bash Shell學習(十):流程控制——forLinux