Skip to content

Instantly share code, notes, and snippets.

@bjjb
Last active December 15, 2015 09:08
Show Gist options
  • Select an option

  • Save bjjb/5235707 to your computer and use it in GitHub Desktop.

Select an option

Save bjjb/5235707 to your computer and use it in GitHub Desktop.
Shell command to generate a [.pow](http://pow.cx) link for every file in a project directory (provided they have a config.ru)
cd ~/.pow
for f in ~/Projects/*; do [[ -e $f/config.ru ]] && ln -s $f `basename $f`; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment