@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 CHANGED
@@ -28,4 +28,7 @@ alias sz='du -hs *';
28
28
  alias szz='du -hks';
29
29
  alias count='ls | wc -l';
30
30
 
31
+ # mkdir and change to
32
+ alias mkp="$ROOT_PATH/modules/_mkp.sh";
33
+
31
34
  unset ROOT_PATH;
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env bash
2
+ mkdir -p "$1" && cd "$1"
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";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jswork/ushell-module-base",
3
- "version": "1.0.31",
3
+ "version": "1.0.33",
4
4
  "description": "Unix like shell base module.",
5
5
  "main": "index.sh",
6
6
  "repository": {