Skip to content

Commit 4cb2ddd

Browse files
Do breaking change of rename repo
1 parent 4cb206b commit 4cb2ddd

File tree

2 files changed

+22
-26
lines changed

2 files changed

+22
-26
lines changed

README.md

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,40 @@
1-
# POSIX shell script kit
1+
# Unix shell script kit
22

3-
POSIX shell script kit is a file of POSIX helper functions.
3+
Unix shell script kit is a collection of utility functions and constants.
44

5-
The kit works for bash, zsh, dash, and many more Unix shells.
5+
The kit works with POSIX shells, including bash, zsh, dash, ksh, sh, etc.
66

7-
You simply download the kit file, then source it in your script.
8-
9-
Constructive feedback is welcome and appreciated.
7+
All suggestions are welcome and appreciated.
108

119
## Download
1210

13-
To download the POSIX shell script kit file:
11+
Download the kit as one file that has everything:
1412

1513
```sh
16-
curl -O "https://raw.githubusercontent.com/SixArm/posix-shell-script-kit/main/posix-shell-script-kit"
14+
curl -O "https://raw.githubusercontent.com/SixArm/unix-shell-script-kit/main/unix-shell-script-kit"
1715
```
1816

1917
## Source
2018

2119
To use the kit in your own script, you source the kit like this:
2220

2321
```sh
24-
. /your/path/here/posix-shell-script-kit
22+
. /your/path/here/unix-shell-script-kit
2523
```
2624

2725
To use the kit in your own script in the same directory, you source the kit like this:
2826

2927
```sh
30-
. "$(dirname "$(readlink -f "$0")")/posix-shell-script-kit"
28+
. "$(dirname "$(readlink -f "$0")")/unix-shell-script-kit"
3129
```
3230

3331
## Tracking
3432

35-
* Package: posix-shell-script-kit
36-
* Version: 11.1.0
33+
* Package: unix-shell-script-kit
34+
* Version: 12.0.0
3735
* Created: 2017-08-22T00:00:00Z
3836
* Updated: 2023-04-04T23:36:31Z
39-
* Website: https://github.com/sixarm/posix-shell-script-kit
37+
* Website: https://github.com/sixarm/unix-shell-script-kit
4038
* License: GPL-2.0 or GPL-3.0 or contact us for more
4139
* Contact: Joel Parker Henderson (joel@sixarm.com)
4240

posix-shell-script-kit

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,43 @@
11
#!/bin/sh
22

3-
# POSIX shell script kit.
3+
# Unix shell script kit.
44
#
5-
# POSIX shell script kit is a file of POSIX helper functions.
5+
# Unix shell script kit is a file of POSIX helper functions.
66
#
7-
# The kit works for bash, zsh, dash, and many more Unix shells.
7+
# The kit works with POSIX shells, including bash, zsh, dash, ksh, sh, etc.
88
#
9-
# You simply download the kit file, then source it in your script.
10-
#
11-
# Constructive feedback is welcome and appreciated.
9+
# All suggestions are welcome and appreciated.
1210
#
1311
# ## Download
1412
#
15-
# To download the POSIX shell script kit file:
13+
# Download the kit as one file that has everything:
1614
#
1715
# ```sh
18-
# curl -O "https://raw.githubusercontent.com/SixArm/posix-shell-script-kit/main/posix-shell-script-kit"
16+
# curl -O "https://raw.githubusercontent.com/SixArm/unix-shell-script-kit/main/unix-shell-script-kit"
1917
# ```
2018
#
2119
# ## Source
2220
#
2321
# To use the kit in your own script, you source the kit like this:
2422
#
2523
# ```sh
26-
# . /your/path/here/posix-shell-script-kit
24+
# . /your/path/here/unix-shell-script-kit
2725
# ```
2826
#
2927
# To use the kit in your own script, in the same directory, you source the kit like this:
3028
#
3129
# ```sh
32-
# . "$(dirname "$(readlink -f "$0")")/posix-shell-script-kit"
30+
# . "$(dirname "$(readlink -f "$0")")/unix-shell-script-kit"
3331
# ```
3432
#
3533
# ## Tracking
3634
#
37-
# * Package: posix-shell-script-kit
38-
# * Version: 11.1.0
35+
# * Package: unix-shell-script-kit
36+
# * Version: 12.0.0
3937
# * Created: 2017-08-22T00:00:00Z
4038
# * Updated: 2023-04-04T23:36:31Z
4139
# * License: GPL-2.0 or GPL-3.0 or contact us for more
42-
# * Website: https://github.com/sixarm/posix-shell-script-kit
40+
# * Website: https://github.com/sixarm/unix-shell-script-kit
4341
# * Contact: Joel Parker Henderson (joel@sixarm.com)
4442

4543
##

0 commit comments

Comments
 (0)