Skip to content

Instantly share code, notes, and snippets.

@sordina
Created March 10, 2016 05:32
Show Gist options
  • Save sordina/0efa2d02b1216c029f75 to your computer and use it in GitHub Desktop.
Save sordina/0efa2d02b1216c029f75 to your computer and use it in GitHub Desktop.
OS X Copy Current working directory relative to Home, with optional arg
#!/bin/bash
if [ ! "$1" ]
then
echo `pwd`/ | sed 's#^/Users/lyndon/#~/#' | tee /dev/stderr | tr -d '\n' | pbcopy
else
echo `pwd`/$1 | sed 's#^/Users/lyndon/#~/#' | tee /dev/stderr | tr -d '\n' | pbcopy
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment