您现在的位置是:网站首页> 编程资料编程资料
一个shell小案例(创建日期目录)_linux shell_
2023-05-26
471人已围观
简介 一个shell小案例(创建日期目录)_linux shell_
今天看到一个shell题目,正好拿来练练手
需要在多个目录中 (如:beijing shanghai tianjin guangzhou 等等) 创建子目录(以年份命名),然后进入子目录,新建目录并以当天的日期命名。
最终的效果是这样的:
复制代码 代码如下:
china/guangdong/
china/guangdong/shenzhen/2010/1206
china/guangdong/shenzhen/2010/1207
china/guangdong/shenzhen/baoan/2010/1206
china/guangdong/shenzhen/baoan/2010/1207
china/guangdong/shenzhen/baoan/guangming/2010/1206
china/guangdong/shenzhen/baoan/guangming/2010/1207
我的实现:
#!/bin/bash read -p "PLEASE input country:" cou read -p "PLEASE input city:" city read -p "PLEASE input name:" name #echo "$cou,$city,$name" date=$(date +%Y) #echo $date date2=$(date +%m%d) # echo $date2 if [ -d "./$cou/$city/$name/$date/$date2" ];then echo "the dir is exit" else mkdir -p ./$cou/$city/$name/$date/$date2 fi
效果:
[root@localhost hbshell]# test.sh
PLEASE input country:china
PLEASE input city:hangzhou
PLEASE input name:hb
#[root@localhost hbshell]# ll china/hangzhou/hb/2011/0321/
总计 0
您可能感兴趣的文章:
相关内容
- linux下2个检查tcp连接的命令_linux shell_
- linux awk高级应用实例_linux shell_
- linux shell实现求一个多维数组中的最大和最小值_linux shell_
- 一个监控网卡流量的shell脚本_linux shell_
- 自动化下载并检测ftp文件备份的shell脚本_linux shell_
- linux shell实现转换输入日期的格式_linux shell_
- 用来检测输入的选项$1是否在PATH中的shell脚本_linux shell_
- 验证用户输入的参数合法性的shell脚本_linux shell_
- 对用户输入的判断的shell实现代码_linux shell_
- shell脚本nicenumber实现代码_linux shell_
