5 lines
195 B
Plaintext
5 lines
195 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
# Run octave scripts without gui, history, init scripts and initial message
|
||
|
octave --no-gui --no-window-system --no-history --no-init-file --no-site-file --norc --quiet "$@"
|