About Cacher
Web App
Download
Sign In
Sign Up
menu
Cacher is the code snippet organizer for pro developers
We empower you and your team to get more done, faster
Learn More
sndrgrdn
11/9/2014 - 3:46 PM
share
Share
add_circle_outline
Save
Make folder and cd into it
Make folder and cd into it
mkcd
content_copy
file_download
# make folder and cd into it mkcd() { mkdir -p "$@" && cd "$_"; }
clear