mirror of
				https://github.com/viq/NewsBlur.git
				synced 2025-11-01 09:09:16 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			301 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			301 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
# for i in `ps -o pid,command ax | grep celery | awk '!/awk/ && !/grep/ {print $1}'`
 | 
						|
# do
 | 
						|
#     if [ "${i}" != "" ]; then
 | 
						|
#         print "Killing: ${i}";
 | 
						|
#         kill -9 ${i};
 | 
						|
#     fi
 | 
						|
# done
 | 
						|
 | 
						|
# ps aux | grep celery | egrep -v grep | awk '{print $2}' | xargs kill -9
 | 
						|
 | 
						|
pkill -9 -f celery
 |