centos 腳本基礎練習 7

練習1 寫一個腳本,其用法格式 爲:
showlogged.sh -v -c -h|--help
其中,-h選項只能單獨使用,用於顯示幫助信息; -c選項時,顯示當前系統上登陸的全部用戶數據: 若是同時使用了-v 選項,則既顯示同時登陸的用戶數,又顯示登陸的用戶相關信息,如
Logged users: 4
they are:
root tty2 feb 18 02:41
##########################################################bash

[root@localhost mscripts]# cat lx23.sh

#!/bin/bash
declare -i SHU=0
declare -i INU=0
for I in seq 1 $#; do
if [ $# -gt 0 ]; then
case $1 in
-h|--help)
echo "basename $0 aguements[ -v,-c,-h|--help]"
exit 0 ;;
-v|--verbose)
INU=1
shift
;;
-c|--count)
SHU=1
shift
;;
*)
echo "basename $0 aguements[ -v,-c,-h|--help]"
exit 7 ;;
esac
fi
done
if [ $SHU -eq 1 ]; then
echo "Loggied users:who | wc -l."
if [ $INU -eq 1 ]; then
echo "they are :"
who
fi
fiide

相關文章
相關標籤/搜索