「ShellScript」readコマンドでキーボードの入力を取得する方法

操作方法
# vi test001.sh
shellコード

#!/bin/sh
read -p "please input c or f : " inputKey

if [ "${inputKey}" = "c" ]; then
echo you input c
elif [ "$inputKey" = "f" ]; then
echo you input f  
else
echo inputKey other key
fi

実行権限を与える
# chmod a+x test001.sh
シェル実行
# sh test001.sh

実行結果
please input c or f : f
you input f

shellscript

Posted by arkgame