mirror of
				https://github.com/taixingyiji/openit.git
				synced 2025-10-29 21:12:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			433 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			433 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| echo -e "proxypool\n"
 | |
| echo "download proxypool..."
 | |
| wget https://github.com/yu-steven/proxypool/releases/download/v0.6.1/proxypool-linux-amd64 -O proxypool
 | |
| echo "done"
 | |
| echo "chmod 授予777权限..."
 | |
| chmod +777 proxypool
 | |
| echo "done"
 | |
| echo "静默执行程序,默认配置..."
 | |
| nohup ./proxypool -c https://raw.githubusercontent.com/yu-steven/openit/main/sub/config.yaml > /dev/null 2>&1 &
 | |
| echo "这个进程的PID是..."
 |