水島雄太のブログ

個人的かつ雑多なブログです。

scala

典型的なScalaプロジェクトで特定のワードが含まれるファイル一覧を検索する方法

find . \( -type d -name '.idea' -or -type d -name 'tags' -or -type d -name '.git' -or -type d -name 'target' -or -type d -name 'tmp' \) -prune -o -type f -print |xargs grep hogehoge |cut -d ":" -f 1|uniq

Scala 2.12.3 がリリース

Scala 2.12.3 Release Scala 2.12.3 · scala/scala · GitHub Scala 2.12.3 がリリースされました。 変更点 コンパイル速度の高速化 インラインクラスを制御するコンパイル最適化 オプション -opt:l:inline の追加 それに伴い、 -opt:l:classpath と -opt:l:p…