今天看到一個shell題目,正好拿來練練手
需要在多個目錄中 (如:beijing shanghai tianjin guangzhou 等等) 創(chuàng)建子目錄(以年份命名),然后進(jìn)入子目錄,新建目錄并以當(dāng)天的日期命名。
最終的效果是這樣的:
復(fù)制代碼 代碼如下:
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
我的實現(xiàn):
#!/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
您可能感興趣的文章:- PowerShell中使用Get-Date獲取日期時間并格式化輸出的例子
- Shell腳本遍歷一個日期范圍實例
- perl與shell獲取昨天、明天或多天前的日期的代碼
- 獲取兩個日期間隔時間的shell腳本代碼
- PowerShell中iso8601格式日期和DateTime對象互轉(zhuǎn)實例
- linux shell實現(xiàn)轉(zhuǎn)換輸入日期的格式
- 判斷輸入的日期是否正確的shell腳本
- linux shell中 if else以及大于、小于、等于邏輯表達(dá)式介紹
- 一個不錯的shell 腳本教程 入門級
- 利用shell獲取指定日期前N天的日期