mirror of
https://github.com/Sneed-Group/shit-script
synced 2025-01-09 17:53:18 +00:00
Update 'shit.sh'
This commit is contained in:
parent
da2f248d26
commit
a3f6872e84
1 changed files with 16 additions and 1 deletions
17
shit.sh
17
shit.sh
|
@ -15,8 +15,23 @@ sudo apt install --no-install-recommends -y busybox clang irssi flatpak libreoff
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
# List of GNU commands and their corresponding better equivalents
|
# List of GNU commands and their corresponding BusyBox equivalents
|
||||||
commands=(
|
commands=(
|
||||||
|
"ls:busybox ls"
|
||||||
|
"cat:busybox cat"
|
||||||
|
#"cp:busybox cp" # needed for installing GRUB apt package[!]
|
||||||
|
#"mv:busybox mv" # knowing the above is needed for install, disable in case[!]
|
||||||
|
"rm:busybox rm"
|
||||||
|
"rmdir:busybox rmdir"
|
||||||
|
"mkdir:busybox mkdir"
|
||||||
|
#"grep:busybox grep" #needed for updating initramfs[?]
|
||||||
|
#"sed:busybox sed" #shotgun approach
|
||||||
|
#"find:busybox find" #needed for updating initramfs[?]
|
||||||
|
"chmod:busybox chmod"
|
||||||
|
"chown:busybox chown"
|
||||||
|
"wc:busybox wc"
|
||||||
|
#"head:busybox sed -n '1,11p; 12q'"
|
||||||
|
"tail:busybox tail"
|
||||||
"gcc:clang"
|
"gcc:clang"
|
||||||
"g++:clang"
|
"g++:clang"
|
||||||
"wget:swirl"
|
"wget:swirl"
|
||||||
|
|
Loading…
Reference in a new issue