@jswork/ushell-module-base 1.0.13 → 1.0.14

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
@@ -13,6 +13,7 @@ source $ROOT_PATH/modules/cd.sh;
13
13
  source $ROOT_PATH/modules/chmod.sh;
14
14
  source $ROOT_PATH/modules/chown.sh;
15
15
  source $ROOT_PATH/modules/shorty.sh;
16
+ source $ROOT_PATH/modules/tail.sh;
16
17
 
17
18
  # Edit file
18
19
  alias reload='source $BASH_BASE_PATH/src/index.sh';
@@ -21,7 +22,8 @@ alias bakup='cd ~/github/macos-backup/ && gg "feat(daily): automatic backup mac
21
22
  ## aliases:
22
23
  alias cwd="pwd | tr -d '\n' | pbcopy";
23
24
  alias cls='clear';
24
- alias size='du -hs *';
25
+ alias sz='du -hs *';
26
+ alias szz='du -hks';
25
27
  alias count='ls | wc -l';
26
28
 
27
29
  unset ROOT_PATH;
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env bash
2
+
3
+ alias tf="tail -f"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jswork/ushell-module-base",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "description": "Unix like shell base module.",
5
5
  "main": "index.sh",
6
6
  "repository": {