Added uptodate function in root.bashrc

This commit is contained in:
Mahesh Asolkar 2020-04-19 13:19:47 -07:00
parent 94e65ed548
commit c4af834b4b

View File

@ -36,3 +36,7 @@ function hgrep () {
function pgrep () {
ps aux | grep $1
}
function u2d () {
apt update && apt full-upgrade -y && apt autoremove -y
}