Skip to content

Instantly share code, notes, and snippets.

@zmughal
Last active August 29, 2015 14:09
Show Gist options
  • Save zmughal/5827305a7cfa428f34ef to your computer and use it in GitHub Desktop.
Save zmughal/5827305a7cfa428f34ef to your computer and use it in GitHub Desktop.
Documentation lookup scripts

Scripts to look up program documentation.

#!/bin/sh
unset DISPLAY
ARG="$@"
matlab -nodesktop -nodisplay -nojvm -nosplash -r "help $ARG ,exit" \
| cat
#| perl -nle 'print if (/For product information, visit www.mathworks.com./../\[?1l>/) > 2'
#!/bin/sh
unset DISPLAY
ARG="$@"
octave -q --eval "help $ARG"
#!/bin/sh
unset DISPLAY
ARG="$@"
Rscript -e 'help('\"$ARG\"')' | cat
#!/bin/sh
unset DISPLAY
ARG="$@"
swipl -g 'help('$ARG'),halt' | cat
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment