web-dev-qa-db-ja.com

線画文字(または色)をBashファイルリストメニューに追加できますか?

私が学んでいる最初のLinuxツールであるBASHを使用して、世界で最も醜いメニューを作成しました。

メニューの外観

The following /usr/local/bin/bell/sounds were found
1) /usr/local/bin/bell/sounds/Amsterdam.ogg
2) /usr/local/bin/bell/sounds/bell.ogg
3) /usr/local/bin/bell/sounds/Blip.ogg
4) /usr/local/bin/bell/sounds/default.ogg
5) /usr/local/bin/bell/sounds/Mallet.ogg
6) /usr/local/bin/bell/sounds/message.ogg
7) /usr/local/bin/bell/sounds/Positive.ogg
8) /usr/local/bin/bell/sounds/Rhodes.ogg
9) /usr/local/bin/bell/sounds/Slick.ogg
'a' to hear to all files, use number to hear a single file, 
'u' to update last single file heard as new default, or 'q' to quit:

コード

#! /bin/bash

# NAME: bell-select-menu
# PATH: /usr/local/bin
# DESC: Present menu of bell sounds to listen to all, listen to one and update default.
# CALL: bell-select-menu
# DATE: Created Oct 1, 2016.

echo "The following /usr/local/bin/bell/sounds were found"

# set the Prompt used by select, replacing "#?"
PS3="'a' to hear to all files, use number to hear a single file, 
'u' to update last single file heard as new default, or 'q' to quit: "

lastfile="none"

# allow the user to choose a file
select filename in /usr/local/bin/bell/sounds/*.ogg

do

    # leave the loop if the user types 'q'
    if [[ "$REPLY" == q ]]; then break; fi

    # play all if the user types 'a'
    if [[ "$REPLY" == a ]] 
    then 
        playall-bells
        continue
    fi

    # update last file name as new default if the user types 'u'
    if [[ "$REPLY" == u ]]
    then
        if [[ "$lastfile" == none ]]
        then
            echo "No file was selected."
            break
        fi
        echo "$lastfile selected"
        cp $lastfile /usr/local/bin/bell/sounds/default.ogg
        load-default-bell
        break
    fi

    # complain if no file was selected, and loop to ask again
    if [[ "$filename" == "" ]]
    then
        echo "'$REPLY' is not a valid number"
        continue
    else
        lastfile="$filename"
    fi

    # listen to the selected file
    ogg123 "$filename"

    # loop back to ask for another
    continue
done

AskUbuntuからの回答に基づいてコードを作成しました: ファイルリストに基づいてbashメニューを作成します(ファイルを数値にマップします) 。ただし、ユーザーオプションが繰り返し入力されると、メニューが画面からスクロールして消えるので、ループを調整する必要があります。

世界で最も醜いメニューが自動的に生成されるので、ASCII線の左側と右側に文字を描画することはできません。メニューを再フォーマットするプログラムを呼び出す必要がありますか?

メニューの大部分は、単一のbashコマンドによって生成されます。

select filename in /usr/local/bin/bell/sounds/*.ogg

selectステートメントのBashマニュアルを読みましたが、オプションが表示されません。画面をマッサージするために呼び出すことができるプログラムはありますか?

私が見つけた最も近いものはtputと呼ばれ、ここで説明されています: linuxcommand.org/lc3_adv_tput しかし、これがこの問題に実用的かどうかはわかりません。

前もって感謝します :)

PSこのメニューは、ターミナルおよびgeditでのうるさいスピーカーのビープ音を取り除くためのツールの1つです。 Ubuntu 16.04回帰でマザーボード/ PCスピーカーの「ビープ音」をオフにします


編集-承認された回答の組み込み

メニューをクリーンアップするコードを投稿してくれたwjandreaに感謝します。承認された回答の前に、echo文字列とPS3(プロンプト)に色のコードを追加しました。画面からスクロールしないようにメニューを再描画するためのループも挿入しました。また、再描画する前にresetを入力して画面をクリアします。これにより、古いコピー(切り捨てられることもあります)とメニューの新しいコピーが同時に表示されるのを防ぎます。

新しいメニューの外観

端末のテキスト出力からコピーしてAskUbuntuに貼り付けると、色が正確に表示されません。

=====  Sound Files for Bell in /usr/local/bin/bell/sounds/  ====

1) Amsterdam.ogg  4) default.ogg    7) Positive.ogg
2) bell.ogg       5) Mallet.ogg     8) Rhodes.ogg
3) Blip.ogg       6) message.ogg    9) Slick.ogg

===========================  Options  ==========================

'a' to hear to all files, use number to hear a single file, 
'u' update last number heard as new bell default, 'q' to quit: 

画面に表示されるのはこれだけです。表示される$ Sudo bell-menu呼び出しステートメントはありません。入力した以前のコマンドの履歴は表示されません。

スクリーンショットは色を正確に示しており、画面がプログラムで空白になっていることがわかります。

bell-menu

新しいメニューコード

#! /bin/bash

# NAME: bell-menu
# PATH: /usr/local/bin
# DESC: Present menu of bell sounds to listen to all, listen to one and update default.
# CALL: Sudo bell-menu
# DATE: Created Oct 6, 2016.

# set the Prompt used by select, replacing "#?"
PS3="
===========================  Options  ==========================

$(tput setaf 2)'$(tput setaf 7)a$(tput setaf 2)' to hear to all files, use $(tput setaf 7)number$(tput setaf 2) to hear a single file, 
'$(tput setaf 7)u$(tput setaf 2)' update last number heard as new bell default, '$(tput setaf 7)q$(tput setaf 2)' to quit: $(tput setaf 7)"

cd /usr/local/bin/bell/sounds/

# Prepare variables for loops
lastfile="none"
wend="n"

while true; do

  tput reset # Clear screen so multiple menu calls can't be seen.

  echo
  echo -e "===== \e[46m Sound Files for Bell in /usr/local/bin/bell/sounds/ \e[0m ===="
  echo

  # allow the user to choose a file
  select soundfile in *.ogg; do

    case "$REPLY" in
        q) # leave the loop if the user types 'q'
            wend="y" # end while loop
            break    # end do loop
            ;;
        a) # play all if the user types 'a'
            playall-bells
            break    # end do loop
            ;;
        u) # update last file name as new default if the user types 'u'
            if [[ "$lastfile" == none ]]; then
                echo "No file has been heard to update default. Listen first!"
                continue  # do loop repeat
            fi
            echo "$lastfile selected"
            cp "$lastfile" default.ogg
            load-default-bell
            wend="y" # end while loop
            break    # end do loop
            ;;
    esac

    # complain if no file was selected, and loop to ask again
    if [[ "$soundfile" == "" ]]; then
        echo "$REPLY: not a valid selection."
        continue    # repeat do loop
    else
        lastfile="$soundfile"
    fi

    # listen to the selected file
    canberra-gtk-play --file="$soundfile"

    # loop back to ask for another
    break
  done
  if [[ "$wend" == "y" ]]; then break; fi

done

メニューの名前がbell-select-menuからbell-menuに変更されました。 /usr/local/binにあるため、Sudo bell-menuで呼び出す必要があり、コメントが更新されてこの事実が反映されています。

少しの作業で世界で最も醜いメニューになり、今では容認できる(美しくない)メニューになっています。

2

これが私がやる方法です。私が変更した最も重要なことは、スクリプトがファイルを一覧表示する前にディレクトリに移動し、ファイルを絶対パスではなく相対パスとして一覧表示することです。

また、$PS3 ずっと小さい;中古 canberra-gtk-playがプリインストールされているため、ogg123はそうではありません。複数のcaseステートメントの代わりにifステートメントを使用しました。

14.04を実行しているため、テストできませんでした。

#! /bin/bash

# NAME: bell-select-menu
# PATH: /usr/local/bin
# DESC: Present menu of bell sounds to listen to all, listen to one and update default.
# CALL: bell-select-menu
# DATE: Created Oct 1, 2016.

# set the Prompt used by `select`, replacing "#?"
PS3=": "

echo "Options:
a) Play all 
u) Set the last file played as the new default
q) Quit
The following sounds were found in /usr/local/bin/bell/sounds/:"

cd /usr/local/bin/bell/sounds/

# Prepare var for the loop.
lastfile="none"

# allow the user to choose a file
select soundfile in *.ogg; do

    case "$REPLY" in
        q) # leave the loop if the user types 'q'
            break
            ;;
        a) # play all if the user types 'a'
            playall-bells
            continue
            ;;
        u) # update last file name as new default if the user types 'u'
            if [[ "$lastfile" == none ]]; then
                echo "No file was selected."
                break
            fi
            echo "$lastfile selected"
            cp "$lastfile" default.ogg
            load-default-bell
            break
            ;;
    esac

    # complain if no file was selected, and loop to ask again
    if [[ "$soundfile" == "" ]]; then
        echo "$REPLY: not a valid selection."
        continue
    else
        lastfile="$soundfile"
    fi

    # listen to the selected file
    canberra-gtk-play --file="$soundfile"

    # loop back to ask for another
    continue
done
2
wjandrea