摘要: #!/bin/bash # 接受信号2(ctrl+C) # 关闭fd 6的绑定 # 注意:绑定时可以用 exec <> fifofile; # 但关闭时必须分开写:exec 6>&-和exec 6<&- 是关闭fd6 trap "exec 6>&-; exec 6<&-; exit 0" 2 # 管 阅读全文
posted @ 2020-11-16 17:04 bigtree2pingping 阅读(637) 评论(0) 推荐(0) 编辑