Created
August 6, 2017 09:55
-
-
Save therealchiko/a7bdfeb961e18056e3d7986661d0a140 to your computer and use it in GitHub Desktop.
Two functions to clean desktop and get certain project from Sites dir
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
function get(){ | |
mv ~/Sites/$1 ~/Desktop/ | |
cd ~/Desktop/$1 | |
ll | |
open -a Phpstorm ./ | |
} | |
function store(){ | |
mv ~/Desktop/$1 ~/Sites/ | |
cd ~/Sites/ | |
osascript -e 'quit app "/Applications/PhpStorm"' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment