Skip to content

Instantly share code, notes, and snippets.

@cdaringe
Created December 5, 2015 03:17
Show Gist options
  • Save cdaringe/d76b90a8a4522a4d8d02 to your computer and use it in GitHub Desktop.
Save cdaringe/d76b90a8a4522a4d8d02 to your computer and use it in GitHub Desktop.
bambam
#!/bin/bash
function bamtest {
tmpdir=`mktemp -d`
trap 'rm -rf "$tmpdir"' exit
PATH="$tmpdir:$PATH"
echo $PATH
ln -s "ls" "$tmpdir"/bam
echo `ls -al $tmpdir`
echo `bam` # <== hmm, not being executed, what gives?
}
bamtest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment