我在Makefile中使用MATLAB將一些數據轉換爲eps。 但它顯示它的標誌遍佈整個地方。如何在bash shell中運行MATLAB真的很安靜?
舉例來說,當我鍵入bash下
matlab -nojvm -nodisplay -nosplash -r "display('derp');exit"
我得到:
< M A T L A B (R) >
Copyright 1984-2012 The MathWorks, Inc.
R2012a (7.14.0.739) 64-bit (glnxa64)
February 9, 2012
To get started, type one of these: helpwin, helpdesk, or demo.
For product information, visit www.mathworks.com.
derp
我明白,MATLAB是不是蟒蛇,可剛
python -c "print 'zoom'"
但有沒有辦法讓它停止打印MATLAB標誌?
'matlab -nojvm -nodisplay -nosplash -r「display('derp'); exit」>/dev/null 2>/dev/null'? – Saphrosit
這只是壓制所有輸出。關鍵是要打印除徽標以外的所有內容。 –
'matlab -nojvm -nodisplay -nosplash -r「display('derp'); exit」|尾巴-n + 6'。雖然我不認爲這個標誌是如此煩人:) – Saphrosit