コマンドラインでsbtを実行するときに、
$ sbt reload clean update compile test
のようにすると複数のコマンドを続けて実行できますが、
これと同じことをインタラクティブモードで実行するには、
$ sbt
> ;reload ;clean ;update ;compile ;test
とコマンドをセミコロン区切りにするとできます。
> sbt help
; <command> (; <command>)* Runs the provided semicolon-separated commands.
ちょっとしたTipsでした。