如何检测 BASH 中的 TAB 键?
How to detect TAB key in BASH?
下面有这段bash代码,
#!/bin/bash
while true; do
read -rsn1 input
if [ "$input" = "a" ]; then
echo "triggered"
fi
done
当我按下“a”键时它工作正常,但是我真正想要的是当用户按下 TAB 键时触发一些东西。我怎样才能让它发挥作用?非常感谢您的帮助!
如果不希望与IFS
分割扫描,则设置IFS
为空。
IFS= read -rsn1 input
下面有这段bash代码,
#!/bin/bash
while true; do
read -rsn1 input
if [ "$input" = "a" ]; then
echo "triggered"
fi
done
当我按下“a”键时它工作正常,但是我真正想要的是当用户按下 TAB 键时触发一些东西。我怎样才能让它发挥作用?非常感谢您的帮助!
如果不希望与IFS
分割扫描,则设置IFS
为空。
IFS= read -rsn1 input