@jswork/ushell-module-base 1.0.48 → 1.0.50

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/_mkp.sh;
13
13
  source $ROOT_PATH/modules/cd.sh;
14
+ source $ROOT_PATH/modules/crontab.sh;
14
15
  source $ROOT_PATH/modules/grep.sh;
15
16
  source $ROOT_PATH/modules/ip.sh;
16
17
  source $ROOT_PATH/modules/kill.sh;
package/modules/cd.sh CHANGED
@@ -21,3 +21,6 @@ alias saybot="cd ~/saybot";
21
21
  alias dw="cd ~/Downloads";
22
22
  alias dot="cd ~/.dotfiles";
23
23
  alias fit="cd ~/aric-tpls/fittings";
24
+
25
+ # crontab tasks
26
+ alias cns="cd ~/aric-server/crontab-tasks";
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env bash
2
+
3
+ alias cne="crontab -e";
4
+ alias cnl="crontab -l";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jswork/ushell-module-base",
3
- "version": "1.0.48",
3
+ "version": "1.0.50",
4
4
  "description": "Unix like shell base module.",
5
5
  "main": "index.sh",
6
6
  "repository": {