shell脚本中的“请按任意键继续”

#!/bin/bash 
 
get_char() 
{ 
SAVEDSTTY=`stty -g` 
stty -echo 
stty cbreak 
dd if=/dev/tty bs=1 count=1 2> /dev/null 
stty -raw 
stty echo 
stty $SAVEDSTTY 
} 
 
echo "Press any key to continue!" 
char=`get_char` 
 
echo "" 
echo "Hello!" 
echo "http://cto.luxiaok.com" 
echo "" 

   来看下执行效果:

猜你喜欢

转载自www.cnblogs.com/bazingafraser/p/9116393.html