Last active
October 5, 2018 05:40
-
-
Save kotet/965657d6966a888ad3bf90de73142820 to your computer and use it in GitHub Desktop.
ディレクトリ整理
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkws() { | |
local dhome="$HOME" | |
local droot="workspace" | |
local ddate="$(date '+%Y/%m-%d')" | |
local dname="${1:-space}" | |
local dseparator="." | |
local dsalt="$(cat /dev/urandom | tr -dc 'a-z' | head -c 4)" | |
local d="$dhome/$droot/$ddate/$dname$dseparator$dsalt" | |
mkdir -p -v "$d" | |
cd "$d" | |
echo -e "\n $(pwd)\n" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment