@jswork/ushell-module-base 1.0.31 → 1.0.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.sh +3 -0
- package/modules/_mkp.sh +2 -0
- package/modules/cd.sh +1 -1
- package/package.json +1 -1
package/index.sh
CHANGED
package/modules/_mkp.sh
ADDED
package/modules/cd.sh
CHANGED
|
@@ -14,7 +14,7 @@ alias spider="cd ~/aric-spider";
|
|
|
14
14
|
alias business="cd ~/aric-business";
|
|
15
15
|
alias pypi="cd ~/aric-pypi";
|
|
16
16
|
alias tpls="cd ~/aric-tpls";
|
|
17
|
+
alias dkr="cd ~/aric-docker";
|
|
17
18
|
alias a7="cd ~/alo7i";
|
|
18
19
|
alias saybot="cd ~/saybot";
|
|
19
20
|
alias down="cd ~/Downloads";
|
|
20
|
-
alias mkp="function _mkp(){ mkdir -p $1 && cd $1; }; _mkp; unset -f _mkp";
|