0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Javaでshebang(シェバン)

Posted at

Javaもスクリプト的に動かせる

Javaのソースコードモードを使えば、Javaもスクリプト言語っぽく使えます。

shebangを使えば「better bash」としても使えるかなと思い、テストしてみました。

雛形

shebang.sh
#!/usr/bin/java --source 11

public class App {
    public static void main(String[] args) {
        System.out.println("Hello Terminal");
    }
}

このファイルに実行権限をつけておくと。実行されます。めでたしめでたし。

$ ./shebang.sh
Hello Terminal

javaのいいところは「ライブラリを見えるところにファイルコピーするだけ」でOKなところです。「超強力なライブラリのラッパースクリプトだけvimでさくっと書きたい」みたいな用途にもピッタリです。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?