ダイアログボックス --tailboxbg --gauge からユーザー入力を取得するには?
ゲージバーを表示し、スクリプト自体の出力を追跡したいmacOSコンピュータで実行されるスクリプトがあります。 現在このコマンドを使用しており、うまく動作します。 #!/bin/bash TERMINAL_COLS=$(tput cols) TERMINAL_ROWS=$(tput lines) (while true ; do df /Volumes/Backup/ | tail -1 | awk '{print int($3/($3+$4)*100)}' sleep 1 done | dialog --no-shadow --be...