root function

This commit is contained in:
Shihaam Abdul Rahman 2023-01-17 15:29:06 +05:00
parent 40e6023c83
commit c124a99266
Signed by: shihaam
GPG Key ID: 6DA2E87EBC227636

2
bashrc
View File

@ -1,4 +1,3 @@
PATH=$HOME/.scripts:/opt:$PATH
HISTSIZE=999999
HISTFILESIZE=999999
@ -38,6 +37,7 @@ math(){ echo $1 | bc;}
checkip(){ dig $1 +short;}
# search for term and edit first file with that specific text
edit(){ nano $(grep $1 * -R | awk '{print $1}'|cut -f1 -d ':' | head -n1);}
root(){su -c "$@";}
###############################################################################