Skip to content

Instantly share code, notes, and snippets.

@enriched
Created August 2, 2017 00:50
Show Gist options
  • Save enriched/8f45e59cf5762add2eb49d316196a610 to your computer and use it in GitHub Desktop.
Save enriched/8f45e59cf5762add2eb49d316196a610 to your computer and use it in GitHub Desktop.
Run Bash command in another folder
run-in-folder ()
{
CUR_PWD=$PWD;
cd $1;
eval "${@:2}";
cd $CUR_PWD;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment