add files
This commit is contained in:
parent
92bcb313e5
commit
afed06e61a
15
fuck
Executable file
15
fuck
Executable file
@ -0,0 +1,15 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Script Name : FUCK
|
||||
# Description : scritp 2 kill a process by JGomez
|
||||
# Author : Josue Gomez
|
||||
# Email : jgomez@jesrat.com
|
||||
# Args : $1=Proces Name
|
||||
# Run Information : fuck firefox
|
||||
# Error Log : N/A
|
||||
|
||||
|
||||
main(){
|
||||
ps -ef | grep $1 | grep -v grep | awk '{print $2}'| xargs kill
|
||||
}
|
||||
main $1
|
||||
Loading…
Reference in New Issue
Block a user