對於下面的代碼,我希望能夠按住一個按鈕,然後按另一個執行腳本,如「Ctrl」+「upArrow」組合鍵。我猜想某種'按鍵'和'按鍵'功能是我所需要的。有任何想法嗎 ?閱讀與bash腳本的組合鍵
#!/bin/bash
read -rsn1 input
while [ "$input" = "a" ]; do
read -rsn1 input2
if [ "$input" = "b" ]; then #spaces are important for control flow in bash-script
echo "Rest in pepperoni memeroni";
fi
done
您可以在此示例中使用功能鍵: – tale852150