码迷,mamicode.com
首页 > 其他好文 > 详细

case

时间:2017-08-04 17:14:01      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:ase   nbsp   div   bash   free   echo   bin   blog   style   

#!/bin/bash
#date:2015.06.15
mem(){
free -m
}
hdd(){
df -h
}

case "$1" in
mem)
mem
;;
hdd)
hdd
;;
*)
echo "Usage: $0 {mem|hdd}"
esac

 

case

标签:ase   nbsp   div   bash   free   echo   bin   blog   style   

原文地址:http://www.cnblogs.com/syaving/p/7286068.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!