设为首页 - 加入收藏 ASP站长网(Aspzz.Cn)- 科技、建站、经验、云计算、5G、大数据,站长网!
热搜: 手机 数据 公司
当前位置: 首页 > 服务器 > 安全 > 正文

Shell脚本实现Linux回收站功能(2)

发布时间:2021-01-01 04:37 所属栏目:53 来源:网络整理
导读:case $1 in [a-z]) : ;; [0-9]) : ;; [A-Z]) : ;; ?) more ;; *) :;; esac if [ $# -eq 0 ] then echo -n rm: missing operand Try rm help for more informaction. fi if [ $# -eq 1 ] then case $from1 in -i) ec

case "$1"
in
[a-z]) : ;;
[0-9]) : ;;
[A-Z]) : ;;
?) more ;;
*) :;;
esac
if [ "$#" -eq 0 ]
then
echo -n "rm: missing operand
Try ‘rm –help’ for more informaction.
"
fi
if [ "$#" -eq 1 ]
then
case "$from1"
in
-i) echo "Try ‘rm –help’ for more informaction."; break ;;
-f) echo "Try ‘rm –help’ for more informaction."; break ;;
-r) echo "Try ‘rm –help’ for more informaction."; break ;;

-l) rml ;;
–help) help;;
*) rm1;;
esac
fi

if [ "$#" -eq 2 ]
then
case "$from1"
in
-i) rmi ;;
-f) rmf ;;
-r) rmr ;;
-l) rml ;;
-rf) rmr ;;
–help) help ;;
esac
fi

if [ "$#" -gt 2 ]
then
for file in $*
do
mv $file "$home/"
done 2> /dev/null
fi
[/code]

(编辑:ASP站长网)

网友评论
推荐文章
    热点阅读