摘要:
写在前面:案例、常用、归类、解释说明。(By Jim)Ctrl+C组合键可以生产SIGINT信号Ctrl+Z组合键生产SIGTSTP信号,停止进程后程序仍然留在内存中,能够从停止的地方继续运行。捕获信号#!/bin/bash# testing output in a background jobtrap "echo Haha" SIGINT SIGTERMecho "This is a test program"count=1while [ $count -le 10 ]do echo "Loop #$count" sleep 10 阅读全文