Last Updated: February 25, 2016
·
611
· sstarr

One liner to create a Pow symlink for the current directory

pwd | pbcopy && cd ~/.pow/ && ln -s `pbpaste` && cd -
  1. Copy the present directory to the clipboard
  2. cd into the Pow directory
  3. Create a symlink for the clipboard contents
  4. cd back to where you came from

1 Response
Add your response

And here's the fish shell version:

pwd | pbcopy ; and cd ~/.pow/ ; and ln -s (pbpaste) ; and cd -

over 1 year ago ·