brianjlandau (owner)

Revisions

gist: 153544 Download_button fork
public
Description:
Allow access to MySQL5 commands installed via MacPorts with out the "5" at the end.
Public Clone URL: git://gist.github.com/153544.git
Embed All Files: show embed
Bash #
1
2
3
4
5
for mysql_cmd in $(compgen -o nospace -A command mysql) ; do
if [ "${mysql_cmd%5}" != "$mysql_cmd" ]; then
alias "${mysql_cmd%5}"="$mysql_cmd"
  fi
done