Scripting Mathematica

1 · Shane Mulligan · Oct. 24, 2019, 4 p.m.
Mathematica keyboard shortcuts https://reference.wolfram.com/language/tutorial/KeyboardShortcutListing.html shell commands mmadoc Getting documentation with Mathematica code 1 2 ?Integrate ?WolframAlpha 1 2 3 4 5 6 #!/bin/bash export TTY funcname="$1" mma "?$funcname" mma 1 2 3 4 5 6 7 8 9 10 11 12 13 #!/bin/bash export TTY # Mathematica tf_script="$(ux tf script wls || echo /dev/null)" trap "rm \"$tf_script\" 2>/dev/null" 0 cat > "$tf_script" <<HEREDOC Print[$@] HEREDOC wolframscript -fi...