乙個shell小案例 建立日期目錄

2022-09-26 16:24:25 字數 1161 閱讀 6561

今天看到乙個shell題目,正好拿來練練手

需要在多個目錄中 (如:beijing shanghai tianjin guangzhou 等等) 建立子目錄(以年份命名),然後進入子目錄,新建目錄並以當天的日期命名。

最終的效果是這程式設計客棧樣的:

複製** **如下:

china/guangdong/

china/guangdo程式設計客棧ng/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/

我的實現:

#!/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

本文標題: 乙個shell小案例(建立日期目錄)

本文位址:

shell遍歷乙個日期範圍

方法1 usr bin env bash date1 1 date2 2 echo date1 date1 echo date2 date2 tempdate date d 0 day date1 f enddate date d 0 day date2 f tempdatesec date d 0...

乙個VUE的小案例

商品列表 router link router link to newslist 新聞列表 router link br router view router view div body script 1.定義好元件 const newslistcomponent vue.extend const ...

使用tensorflow的乙個小案例

那 就用tensorflow來解決這個問題!一些基礎資訊 1.系統是ubuntu 16.04 lts 2.我用的是sublime text3來寫的 3.python用的是3.5 4.tensorflow用的是0.12.0 匯入依賴庫 import numpy as np 這是python的一種開源的...