Sep
19th
Fri
19th
MacOS open’s under Linux
MacOS has a nice “open” command that will open any document with any application from the command line. I hacked my own for Linux for a bash shell:
TEMP=`getopt -o a: -- "$@"`
if [ $? != 0 ] ;...