add files

This commit is contained in:
Josue Gomez 2019-01-31 00:49:13 -06:00
parent 92bcb313e5
commit afed06e61a

15
fuck Executable file
View 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