@jswork/ushell-module-base 1.0.27 → 1.0.29

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
@@ -11,6 +11,7 @@ PS1="\[[\e[1;32m\]\u\[\e[m\]\[\e[1;36m\]@\[\e[m\]\[\e[1;35m\]\h\[\e[m\]:\w]\n\$
11
11
  ## base:
12
12
  source $ROOT_PATH/modules/cd.sh;
13
13
  source $ROOT_PATH/modules/ip.sh;
14
+ source $ROOT_PATH/modules/kill.sh;
14
15
  source $ROOT_PATH/modules/open.sh;
15
16
  source $ROOT_PATH/modules/shorty.sh;
16
17
  source $ROOT_PATH/modules/tail.sh;
package/modules/cd.sh CHANGED
@@ -9,6 +9,7 @@ alias c-='cd -';
9
9
  alias notes="cd ~/aric-notes";
10
10
  alias server="cd ~/aric-server";
11
11
  alias lwb="cd ~/aric-lwb";
12
+ alias jsw="cd ~/aric-jswork";
12
13
  alias spider="cd ~/aric-spider";
13
14
  alias business="cd ~/aric-business";
14
15
  alias pypi="cd ~/aric-pypi";
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env bash
2
+
3
+
4
+
5
+ # base dir
6
+ alias k9="kill -9";
7
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jswork/ushell-module-base",
3
- "version": "1.0.27",
3
+ "version": "1.0.29",
4
4
  "description": "Unix like shell base module.",
5
5
  "main": "index.sh",
6
6
  "repository": {