Skip to content
Snippets Groups Projects
Commit 8de0d145 authored by nimrod's avatar nimrod
Browse files

Fail command same as obsolete, missing-recommends and missing-suggested.

parent e402e5ac
No related branches found
No related tags found
No related merge requests found
......@@ -62,7 +62,7 @@ alias obsolete='aptitude search ?obsolete'
alias missing-recommends="aptitude search '~RBrecommends:~i'"
alias missing-suggests="aptitude search '~RBsuggests:~i'"
# shellcheck disable=SC2142
alias deinstalled="dpkg --get-selections | awk '\$2==\"deinstall\" {print \$1}'"
alias deinstalled="dpkg --get-selections | awk 'BEGIN {exitcode=1}; \$2==\"deinstall\" {print \$1; exitcode=0}; END {exit exitcode}'"
alias ansible-local='ansible localhost -c local -i localhost,'
alias ansible-local-playbook='ansible-playbook -i localhost, -c local'
alias concat="perl -pe 's/\\n/\\\\n/g'"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment