aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.aliases9
1 files changed, 9 insertions, 0 deletions
diff --git a/.aliases b/.aliases
index b1324a9..cac84a0 100644
--- a/.aliases
+++ b/.aliases
@@ -26,5 +26,14 @@ alias df="df -h"
alias lsmb="ls -l --block-size=MiB"
alias lsgb="ls -l --block-size=GiB"
+# Hint: use "tarls/untar {filename} -v" to print more information, such as
+# ownership, filesize, timestamp, etc
+
+# List the content (-t) of TAR file (-f)
+alias tarls="tar -tf"
+
+# Extract files (-x) from TAR archive (-f)
+alias untar="tar -xf"
+
# Always preload a math library, so the default _scale_ is set to 20
alias bc="bc -l"