Shell command
1,dev/null
# cd test
#tar xzvf jdk-*-linux-x64.gz >/dev/null
把xzvf jdk-*-linux-x64.gz文件解压到 当前目录(test)下。
注 :/dev/null 是 Unix/Linux 里的【无底洞】
当你不想看到 output 或者output 太多太大了,有可能把硬碟给挤爆了的时候,
程序的设计就会考虑把 output 送到 /dev/null 了
2,SSH
ssh -o StrictHostKeyChecking=no 是用来避免第一次输入ssh时要求输入yes/no而使用的。
3,for
格式一 | |
for 变量 in 列表 do 语句 done
| for s in $(cat ls.txt) do $s done ------------------------------------------------------------ for arg in "$@" //$@命令行的参数列表 do echo $arg done |
格式二 | |
for ((变量=初始值; 条件判断; 变量变化)) do 语句 done
| for ((i=0; i<10; ++i)) do $i done |