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をスクリプト的に使いたい時のbash_completion

Posted at

.javaが直接実行できるようになって久しい

java xxx.java と直接ソースを実行できるようになって久しいです。裏ではコンパイルしているので、ちょっとだけタイムラグを感じますが、スクリプト的にJavaが使えるのは便利です。

java [タブ]で、xxx.javaを補完したい

スクリプト的に使いたいとなると、ファイル名の補完もやりたいです。

以下のbash_completion設定ファイルを作成・保存します。

/etc/bash_completion.d/java
_java()
{
    local cur prev opts
    COMPREPLY=()
    cur="${COMP_WORDS[COMP_CWORD]}"
    prev="${COMP_WORDS[COMP_CWORD-1]}"
    opts="$(find . -maxdepth 1 -name '*.java' -print0 | xargs -0 -n1 basename)"

    COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
    return 0
}
complete -F _java java

あとは、bash -l でログインスクリプトから読み直して反映すれば使えます。

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?