@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 +8 -1
- package/index.sh +4 -1
- package/modules/tail.sh +3 -0
- package/package.json +2 -1
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 @
|
|
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
|
|
25
|
+
alias sz='du -hs *';
|
|
26
|
+
alias szz='du -hks';
|
|
27
|
+
alias count='ls | wc -l';
|
|
25
28
|
|
|
26
29
|
unset ROOT_PATH;
|
package/modules/tail.sh
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jswork/ushell-module-base",
|
|
3
|
-
"version": "1.0.
|
|
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": {
|