Appendix A Scala scripts on Unix and Windows
Unixのshell環境でshell scriptとしてscala scriptを実施する方法。
Scalaのスクリプトを下記の様に記載する。
#!/bin/sh
exec scala "$0" "$@"
!#
// Say hello to the first argument
println("Hello, "+ args(0) +"!")
実行権限を与える。
$ chmod +x helloarg
shell scriptと同様に実行できる。
$ ./helloarg globe
Dosのコマンド環境でバッチファイルとしてscala scriptを実施する方法。
ファイル名をhelloarg.batとする。
ファイルの先頭に下記を記載した後にscalaのscriptを記載する。
::#!
@echo off
call scala %0 %*
goto :eof
::!#
0 件のコメント:
コメントを投稿