@jswork/ushell-module-base 1.0.10 → 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/README.md CHANGED
@@ -10,6 +10,13 @@ npm i @jswork/ushell-module-base
10
10
  ```shell
11
11
  npm i -g del-cli
12
12
  npm i -g ntl
13
- npm i -g @feizheng/git-url-cli
13
+ npm i -g @jswork/git-url-cli
14
14
  npm i -g npm-install-peers publish-preview yarn
15
15
  ```
16
+
17
+ ## clipy
18
+ ```shell
19
+ git clone git@github.com:afeiship/clipy.git
20
+ npm i
21
+ npm link
22
+ ```
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,6 +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';
27
+ alias count='ls | wc -l';
25
28
 
26
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.10",
3
+ "version": "1.0.14",
4
4
  "description": "Unix like shell base module.",
5
5
  "main": "index.sh",
6
6
  "repository": {
@@ -23,6 +23,7 @@
23
23
  },
24
24
  "homepage": "https://github.com/afeiship/ushell-module-base#readme",
25
25
  "publishConfig": {
26
+ "access": "public",
26
27
  "registry": "https://registry.npmjs.org/"
27
28
  },
28
29
  "devDependencies": {