forked from Bash-it/bash-it
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into Bash-itGH-1142
- Loading branch information
Showing
74 changed files
with
1,338 additions
and
241 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
cite 'about-alias' | ||
about-alias 'puppet bolt aliases' | ||
|
||
# Aliases | ||
alias bolt='bolt command run --tty --no-host-key-check' | ||
alias boltas='bolt -p -u' | ||
alias sudobolt='bolt --run-as root --sudo-password' | ||
alias sudoboltas='sudobolt -p -u' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
cite 'about-alias' | ||
about-alias 'common composer abbreviations' | ||
|
||
# Aliases | ||
alias coab='composer about' | ||
alias coar='composer archive' | ||
alias cob='composer browser' | ||
alias cocpr='composer check-platform-reqs' | ||
alias cocc='composer clear-cache' | ||
alias cocfg='composer config' | ||
alias cocp='composer create-project' | ||
alias codp='composer depends' | ||
alias codiag='composer diagnose' | ||
alias codmp='composer dump-autoload' | ||
alias coex='composer exec' | ||
alias coglob='composer global' | ||
alias coh='composer help' | ||
alias cohome='composer home' | ||
alias coi='composer install' | ||
alias coinf='composer info' | ||
alias coini='composer init' | ||
alias coli='composer license' | ||
alias colis='composer list' | ||
alias coout='composer outdated' | ||
alias cop='composer prohibits' | ||
alias corem='composer remove' | ||
alias coreq='composer require' | ||
alias coreqd='composer require --dev' | ||
alias cors='composer run-script' | ||
alias cos='composer search' | ||
alias cosu='composer self-update' | ||
alias coshow='composer show' | ||
alias costat='composer status' | ||
alias cosugg='composer suggest' | ||
alias coup='composer update' | ||
alias coupg='composer upgrade' | ||
alias coval='composer validate' | ||
alias cowhy='composer why' | ||
alias cowhyn='composer why-not' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/bin/bash | ||
# | ||
# -binaryanomaly | ||
|
||
cite 'about-alias' | ||
about-alias 'kubectl aliases' | ||
|
||
# set apt aliases | ||
function _set_pkg_aliases() | ||
{ | ||
if [ -x $(which kubectl) ]; then | ||
alias kc='kubectl' | ||
alias kcgp='kubectl get pods' | ||
alias kcgd='kubectl get deployments' | ||
alias kcgn='kubectl get nodes' | ||
alias kcdp='kubectl describe pod' | ||
alias kcdd='kubectl describe deployment' | ||
alias kcdn='kubectl describe node' | ||
alias kcgpan='kubectl get pods --all-namespaces' | ||
alias kcgdan='kubectl get deployments --all-namespaces' | ||
fi | ||
} | ||
|
||
_set_pkg_aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
cite 'about-alias' | ||
about-alias 'puppet aliases' | ||
|
||
# Aliases | ||
alias pupval="puppet parser validate *.pp" | ||
alias puplint="puppet-lint *.pp" | ||
alias pupagt="puppet agent -t" | ||
alias pupagtd="puppet agent -t --debug" | ||
alias pupapp="puppet apply" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.