Skip to content

Instantly share code, notes, and snippets.

@sbeckeriv
Last active August 29, 2015 14:15
Show Gist options
  • Select an option

  • Save sbeckeriv/5f6d881f6f25b79ed0b4 to your computer and use it in GitHub Desktop.

Select an option

Save sbeckeriv/5f6d881f6f25b79ed0b4 to your computer and use it in GitHub Desktop.
function lmf {
if [ -z "$1" ]
then
ls -ctr -d db/migrate/* | tail -1
else
ls -ctrdl $1/*| egrep -v '^d'| tr -s ' ' |cut -d" " -f9 | tail -1
fi
}
function lm {
if [ -z "$1" ]
then
vi `ls -ctr -d db/migrate/* | tail -1`
else
vi `ls -ctrdl $1/*| egrep -v '^d'| tr -s ' ' |cut -d" " -f9 | tail -1`
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment