久しぶりに使ってみたら進化していました。
こんな経過表示。
おされなのでコードを見てみます。
private val progressSymbols = listOf("⣷", "⣯", "⣟", "⡿", "⢿", "⣻", "⣽", "⣾")
private fun ProducerScope<String>.showDiagnosticProgress(title: String) = launch {
var progressIndex = 0
while (isActive) {
progressIndex = (progressIndex + 1) % progressSymbols.size
val symbol = progressSymbols[progressIndex]
send("\r[$symbol] $title")
delay(60)
}
}
kdoctor/Doctor.kt at master · Kotlin/kdoctor · GitHub
"⣷", "⣯", "⣟", "⡿", "⢿", "⣻", "⣽", "⣾"
点字用の文字を使ってアニメーションにしているようです。
Braille pattern dots-12456 - Wikipedia
bash にしてみます。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/local/bin/bash | |
chars="⣷ ⣯ ⣟ ⡿ ⢿ ⣻ ⣽ ⣾" | |
while true | |
do | |
for c in $chars | |
do | |
sleep 0.2 | |
echo -en "\r[$c] loading " | |
done | |
done |

かわいいです!
\r (キャリッジリターン)
ってこんな使い方があるんですね!
関連ワード: Android・AndroidStudio・IDEA・iOS・JetBrains・JetpackCompose・KMP・Kotlin・Kotlin Multiplatform Mobile・ツール・開発