📄 rc.firestorm
字号:
#!/bin/sh## Startup script for firestorm network IDS## chkconfig: 345 11 11# description: firestorm network intrusion detection systemSVNAME="Firestorm Network IDS"# Source 'em up.. /etc/init.d/functions# See how we were called.case "$1" in start) action "Starting $SVNAME: " firestorm-nids ;; stop) if pidof firestorm-nids > /dev/null ; then cmd="killall firestorm-nids" else cmd='false' fi action "Shutting Down $SVNAME: " $cmd ;; restart) $0 stop $0 start ;; status) pidof firestorm-nids ;; *) echo "Usage: $0 {start|stop|restart|status}" exit 1esacexit 0
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -