This commit is contained in:
opalvault
2022-01-06 00:06:04 -08:00
parent 9616eae7dd
commit 6f29d506ef
84 changed files with 6934 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
# ~ Move files to trash folder instead ~ #
del () { mv "$@" $HOME/.local/share/trash/files/.; }
# Make directory and CD into it.
mk () { mkdir -p -- "$1" && cd -P -- "$1" }