fcssd
来自「flashget43的源代码 一个比较常用的下载程序」· 代码 · 共 22 行
TXT
22 行
#!/bin/sh#location of php executable file on your system php_dir="/usr/local/bin"#path to fcssd script file (see chat/inc/patServer directory)fcss_dir="/srv/www/htdocs/chat/inc/patServer"fcss_com="-A -m -d $php_dir/php -q ./runServer.php"fcss_f=`ps auxw | grep "SCREEN $fcss_com" | grep -v grep | awk '{print $2}'`if [ -z "$fcss_f" ]; then echo "Flash Chat socket server is not running, starting it..." cd "$fcss_dir" screen $fcss_com & fcss_f=`ps auxw | grep "SCREEN $fcss_com" | grep -v grep | awk '{print $2}'` if [ -n "$fcss_f" ]; then echo $fcss_f > fcssd.pid echo "Socket server is running." else echo "Socket server could not be started." fifi
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?