Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

how to kill recycling process linux

#!/bin/bash
while :
do
    echo "Press [CTRL+C] to stop.."
    for pid in $(ps -ef | awk '/your process name/ {print $2}'); do kill -9 $pid; done  
    
    sleep 1
done
Comment

PREVIOUS NEXT
Code Example
Shell :: Current user cannot act as service account 881087019435-compute@developer.gserviceaccount.com 
Shell :: wps office has not found any installed printers 
Shell :: run node api on rapberry pi 
Shell :: How to check if you are in tmux bash 
Shell :: solana connect mainnet 
Shell :: update all packages in cmd 
Shell :: cmake comment 
Shell :: renaming a file in linux 
Shell :: install ruby environment on ubuntu 20.04 
Shell :: add kdiff3 to git 
Shell :: show pghba 
Shell :: sed disable disallow root login 
Shell :: how to install programs in ubuntu using terminal 
Shell :: Show Commit Log as Graph For Current or All Branches in git command 
Shell :: docker exec 
Shell :: find and kill android device offline on Mac 
Shell :: snap install fingerprint 
Shell :: brew compas mongo 
Shell :: apache2 mod_jk proxy to tomcat connector 
Shell :: run command on terminal startup 
Shell :: git add remote via ssh 
Shell :: Mount builtin Google Drive on Startup on Ubuntu 
Shell :: git, repository, new repository 
Shell :: purge opencv ubuntu 20.04 
Shell :: bat current directory loop 
Shell :: E: Unable to locate package rvm 
Shell :: share a given window on android 
Shell :: make diff git as commit 
Shell :: bash get first number from string 
Shell :: awk csv to column 
ADD CONTENT
Topic
Content
Source link
Name
3+5 =