커맨드 라인에서 Jython 스크립트를 호출하려고합니다. $ /Applications/Fiji.app/Contents/MacOS/ImageJ-macosx --headless little_jython_script.py
매개 변수가있는 터미널에서 Jython 스크립트 실행
나는
import sys
params = sys.argv[1:]
다음은 $ /Applications/Fiji.app/Contents/MacOS/ImageJ-macosx --headless jython_script_with_params.py param1 param2 param3
같은으로 스크립트를 호출하여 매개 변수를 사용하는 파이썬의 (따라서 자이 썬의) 기능에 대해 알고.
그러나에 따라 ImageJ에 웹 페이지 http://imagej.net/Script_parameters에이
# @String name
# A Jython script with parameters.
# It is the duty of the scripting framework to harvest
# the 'name' parameter from the user, and then display
# the 'greeting' output parameter, based on its type.
print "Hello, " + name + "!"
질문은 해당 웹 사이트에서 Greeting.py의 예와 유사 자이 썬에서 매개 변수의 사용을 코딩하는 것도 가능합니다 : 어떻게 지정합니까 명령 행에서 name
매개 변수는 $/Applications/Fiji.app/Contents/MacOS/ImageJ-macosx --headless Helloworld.py
이라고?