mirror of
https://github.com/Sneed-Group/shit-script
synced 2024-12-23 03:35:23 -06: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
|
||||
}
|
||||
|
||||
# List of GNU commands and their corresponding better equivalents
|
||||
# List of GNU commands and their corresponding BusyBox equivalents
|
||||
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"
|
||||
"g++:clang"
|
||||
"wget:swirl"
|
||||
|
|
Loading…
Reference in a new issue