⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fcssd

📁 flashget43的源代码 一个比较常用的下载程序
💻
字号:
#!/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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -