Pass Command Line Arguments To a Bash Alias Command
seems like bash’s alias wants to tack the argument list from the command line to the end of the aliased string. so for instance: new() { /bin/ls -lt “$@” | head ;} ends up executing “head *pdf” if i do “new *pdf” from the command line. while i understand ...