Linux命令學習(一)
1、read 讀取鍵盤輸入的變數
read [-pt] variable
-p 提示符
-t 等待的秒數
[root@bogon ~]# read -p "Please keyin your name:" -t 30 named
Please keyin your name:zja
[root@bogon ~]# echo $named
zja
2、declare變數宣告
[root@bogon ~]# sum=100+300+50
[root@bogon ~]# echo $sum
100+300+50
[root@bogon ~]# declare -i sum=100+300+50
[root@bogon ~]# echo $sum
450
3、陣列
[root@bogon ~]# var[1]="small min"
[root@bogon ~]# var[2]="big min"
[root@bogon ~]# var[3]="nice min"
[root@bogon ~]# echo "${var[1]},${var[2]},${var[3]}"
small min,big min,nice min
[root@bogon ~]# vbird="/home/vbird/testing/testing.x.sh"
[root@bogon ~]# echo ${vbird}
/home/vbird/testing/testing.x.sh
[root@bogon ~]# echo ${vbird%/*}
/home/vbird/testing
[root@bogon ~]# unset str; var=${str?novar}
-bash: str: novar
[root@bogon ~]# str="oldvar";var=${str?novar}
[root@bogon ~]# echo var="$var",str="$str"
var=oldvar,str=oldvar
設定:
[root@bogon ~]# lm
-bash: lm: command not found
[root@bogon ~]# alias lm='ls -al |more'
[root@bogon ~]# lm
total 252
drwxr-x--- 15 root root 4096 Mar 18 07:04 .
drwxr-xr-x 23 root root 4096 Mar 22 03:58 ..
-rw------- 1 root root 944 Mar 15 03:07 anaconda-ks.cfg
-rw------- 1 root root 530 Mar 18 07:04 .bash_history...................................
檢視都有哪些命令別名:
[root@bogon ~]# alias
alias cp='cp -i'
alias l.='ls -d .* --color=tty'
alias ll='ls -l --color=tty'清除別名:unalias
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/25323853/viewspace-690194/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 學習一個 Linux 命令:shutdown 命令Linux
- linux進階命令學習一Linux
- 學習Linux基本命令(一)Linux
- linux學習筆記---一些命令學習Linux筆記
- Linux基本命令學習之一:Linux基本命令Linux
- 學習一個 Linux 命令:pstreeLinux
- Linux 命令學習Linux
- 每天學習一個Linux命令-目錄Linux
- linux命令學習——psLinux
- virsh命令學習(一)
- linux基礎命令學習Linux
- Linux命令學習---目錄Linux
- Linux命令學習(重定向)Linux
- 每天學習linux命令(1)Linux
- Linux 下vi 命令學習Linux
- Linux學習筆記:常用100條命令(一)Linux筆記
- Linux 常用命令學習Linux
- 【Linux學習筆記】reboot命令Linux筆記boot
- Linux | 常用命令學習Linux
- [Linux]學習⑨----其他幫助命令Linux
- Linux命令學習總結:rmdirLinux
- 【LINUX學習】例行命令的建立Linux
- Linux 命令學習 (110413)Linux
- linux基礎學習 - free命令Linux
- Linux基本命令學習之二:Linux基本命令Linux
- Linux學習教程-Linux下命令的一些異常情況Linux
- Linux學習之檔案處理命令(一) 目錄處理命令lsLinux
- LINUX學習(五)Linux文字處理命令Linux
- Linux的常用命令學習Linux
- Linux命令和shell指令碼學習Linux指令碼
- 學習Linux必須掌握的命令!Linux
- Linux命令ping,nc的學習Linux
- Linux 命令 及 簡單操作 學習Linux
- 【Linux學習教程】Linux中Sed命令如何使用?Linux
- Linux學習之linux的find命令如何使用?Linux
- LINUX學習(八)Linux檔案連結命令Linux
- linux學習day1——linux常見命令Linux
- 一起來學習linux建立使用者useradd命令Linux