0
Linux操作系统,课后习题,应用题求解答!
展开全部cd ~
tar zcvf backup.tar.gz /usr/wang20091001/*
cp backup.tar.gz /media/
linux操作系统习题(求答案)
echo "1:display all the users login currently"echo "2:get help on a particular command"
echo "please you choose a num"
read num
if test $num -eq 2
then
echo "please input the command that you want to know about"
read chr
fi
case $num in
1) who;;
2) man $chr;;
esac