fck/fuck
2019-01-31 00:49:13 -06:00

16 lines
701 B
Bash
Executable File

#!/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