linux中脚本扑捉(trap)信号问题
摘要:
扑捉ctrl+c信号:1 #!/bin/bash2 trap "trap" 2;3 function trap()4 {5 echo "You press Ctrl+C.";6 echo "Exiting,please wait...";7 exit;8 }9 sleep 20s;按下ctrl+c:1 root@ubuntu:/home/dyx/linux 16:13:10 107# bash ex_trap.sh 2 ^CYou press Ctrl+C.3 Exiting,please wait...但是如果把trap函数发在前面 阅读全文
posted @ 2013-07-22 16:40 yi_meng 阅读(1934) 评论(0) 推荐(0) 编辑