감동, 마음이 움직이는 것
[mathematica] command에서 script 실행하기 본문
Tips (Utility, Computer Language, and etc.)
[mathematica] command에서 script 실행하기
Struggler J. 2018. 10. 18. 03:16함수로 만들어서 .bashrc에 넣어두었다.
1. 커맨드에서 커널로 돌리기
math(){
/Applications/Mathematica.app/Contents/MacOS/MathKernel -script $1.m
}
2. 실행파일로 만들어서 돌리기
mathc(){
echo "#!/Applications/Mathematica.app/Contents/MacOS/wolframscript" > $1.temp;
cat $1.m >> $1.temp
cat $1.temp > $1
rm -fr $1.temp
chmod a+x $1
}
'Tips (Utility, Computer Language, and etc.)' 카테고리의 다른 글
[python] savetxt (numpty에 있는 함수로 list를 text로 저장할 때 사용가능) (0) | 2018.11.03 |
---|---|
[Latex] \xrightarrow reaction rule 쓸 때 (0) | 2018.11.02 |
[LaTex] Latex에서 로마자(Roman numer)표기하기 (0) | 2018.10.18 |
[LaTex] Various symbol in math mode (0) | 2018.09.27 |
[gnuplot] symbols and special character (0) | 2018.09.18 |