mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-12-23 19:22:46 +01:00
warnings: fix previous commit with weird workaround.
This commit is contained in:
parent
530d3cd472
commit
b98854b054
2
warnings
2
warnings
@ -1,7 +1,9 @@
|
|||||||
command -v \vim >/dev/null 2>&1 || { echo >&2 "WARNING: vim isn't installed You should install it, because it's used as text editor.!"; }
|
command -v \vim >/dev/null 2>&1 || { echo >&2 "WARNING: vim isn't installed You should install it, because it's used as text editor.!"; }
|
||||||
command -v \most >/dev/null 2>&1 || { echo >&2 "WARNING: most isn't installed! You should install it, because it's used as pager."; }
|
command -v \most >/dev/null 2>&1 || { echo >&2 "WARNING: most isn't installed! You should install it, because it's used as pager."; }
|
||||||
command -v \htop >/dev/null 2>&1 || { echo >&2 "WARNING: htop isn't installed! You should install it, because it's used as top."; }
|
command -v \htop >/dev/null 2>&1 || { echo >&2 "WARNING: htop isn't installed! You should install it, because it's used as top."; }
|
||||||
|
unalias youtube-dl
|
||||||
command -v \youtube-dl >/dev/null 2>&1 || { echo >&2 "WARNING: youtube-dl isn't installed! You should install it, because it's used as youtube-dl. What am I writing? Install it for fun"; } # Expect this to be removed in near future.
|
command -v \youtube-dl >/dev/null 2>&1 || { echo >&2 "WARNING: youtube-dl isn't installed! You should install it, because it's used as youtube-dl. What am I writing? Install it for fun"; } # Expect this to be removed in near future.
|
||||||
|
alias youtube-dl="youtube-dl -t"
|
||||||
command -v \nping >/dev/null 2>&1 || { echo >&2 "WARNING: nping isn't installed! You should install it, because it's used as ping."; }
|
command -v \nping >/dev/null 2>&1 || { echo >&2 "WARNING: nping isn't installed! You should install it, because it's used as ping."; }
|
||||||
command -v \aptitude >/dev/null 2>&1 || { echo >&2 "WARNING: aptitude isn't installed! You should install it, because it's used as apt-get"; }
|
command -v \aptitude >/dev/null 2>&1 || { echo >&2 "WARNING: aptitude isn't installed! You should install it, because it's used as apt-get"; }
|
||||||
command -v \gpg2 >/dev/null 2>&1 || { echo >&2 "WARNING: gnupg2 isn't installed! You should install it, because it's used as gpg."; }
|
command -v \gpg2 >/dev/null 2>&1 || { echo >&2 "WARNING: gnupg2 isn't installed! You should install it, because it's used as gpg."; }
|
||||||
|
Loading…
Reference in New Issue
Block a user