summaryrefslogtreecommitdiffstatshomepage
path: root/shell/aliases.sh
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2021-05-11 13:49:01 -0500
committerToby Vincent <tobyv13@gmail.com>2021-05-11 13:49:01 -0500
commit472a90047abbaeec80f4c332304017769ab31699 (patch)
treed42ff6141c47647bbc0c795bd321f6601502a2fc /shell/aliases.sh
parentb9de0b04f56d7f54ced14231db0599d5adc2bef6 (diff)
refactor: moved posix stuff to shell sourced from zsh
Diffstat (limited to 'shell/aliases.sh')
-rw-r--r--shell/aliases.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/shell/aliases.sh b/shell/aliases.sh
new file mode 100644
index 0000000..6505a39
--- /dev/null
+++ b/shell/aliases.sh
@@ -0,0 +1,10 @@
+# Aliases
+alias update="sudo apt update && apt list --upgradable"
+alias upgrade="sudo apt upgrade -y"
+alias ipa="ip -s -c -h a"
+alias untar="tar -zxvf "
+alias py=python3
+alias python=python3
+alias pip=pip3
+alias dsh="dce sh"
+alias dps="docker ps"