VerySource

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 799|回复: 1

看看这个编程题目!!!!

[复制链接]

5

主题

14

帖子

11.00

积分

新手上路

Rank: 1

积分
11.00
发表于 2020-1-7 19:00:01 | 显示全部楼层 |阅读模式
Write a shell script to check the items of a designated directory which must be input from your terminal: if the item is a directory, delete it; else print the name of this item.
回复

使用道具 举报

0

主题

23

帖子

15.00

积分

新手上路

Rank: 1

积分
15.00
发表于 2020-1-9 15:36:01 | 显示全部楼层
#!/bin/sh
echo "read directory name:"
read Ddir
if [  -d $Ddir   ]; then
        echo "${Ddir} is exists"
        if [ -w $Ddir  ]; then
                rm -rf $Ddir
                echo "Remove completed!"
        else
                echo "You don't have the permission to remove it!"
        fi
       
else
        echo "The directory ${Ddir} is not exists!"
fi

回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|CopyRight © 2008-2023|verysource.com ( 京ICP备17048824号-1 )

快速回复 返回顶部 返回列表