#!/bin/bash
# 练习 case 语句的使用
read -p "Please confirm to formate the disk (Y/N) : " input
case "$input" in
Y|y|[Yy][Ee][Ss]) echo 'Your choosen is Y';;
N|n|[Nn][Oo]) echo 'Your choosen is N';;
*)
echo 'Error!'
echo '一个case之所以用两个分号结束 , 就是为了支持其中可以执行多条语句'
;;
esac
# 练习 case 语句的使用
read -p "Please confirm to formate the disk (Y/N) : " input
case "$input" in
Y|y|[Yy][Ee][Ss]) echo 'Your choosen is Y';;
N|n|[Nn][Oo]) echo 'Your choosen is N';;
*)
echo 'Error!'
echo '一个case之所以用两个分号结束 , 就是为了支持其中可以执行多条语句'
;;
esac
2017-01-12
看了TONEY老师的教程,再次让我浮想连篇。以前和朋友讨论芙蓉姐姐、凤姐,朋友都是一脸鄙夷。我会告诉他们凤姐是个聪明人,这么炒作绝对有深意。之后芙蓉姐姐发财了,凤姐出国了。今天再GOOGLE一下芙蓉姐姐已经北京四套房,凤姐早拿到了绿卡。然后我又想我这么辛苦学技术为了咋呢,去当凤哥得了……
2016-12-01
-b block(块设备)
-c charactor(字符)
-d directory(目录)
-e exit(存在)
-f file(文件)
-L link(链接)
-p pipeline(管道)
-S SOCKET(套接字)
-c charactor(字符)
-d directory(目录)
-e exit(存在)
-f file(文件)
-L link(链接)
-p pipeline(管道)
-S SOCKET(套接字)
2016-11-16
[root@zdy-centos sh]# df -h | grep "/$"
/dev/sda5 26G 3.4G 23G 14% /
/dev/sda5 26G 3.4G 23G 14% /
2016-11-15