- Notifications
You must be signed in to change notification settings - Fork37
portable functions for posix shell environments
License
Unlicense, Unknown licenses found
Licenses found
client9/shlib
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
portable functions for posix shell environments
I've sadly written a lot of shell scripts. Mostly for installers oncompletely alien environments.
Really shell code should only be used for boot-strapping to something sane. Until then you might need some truly portable functions. I hope you never need to use them, but if you do they arepublic domain. Do whatever you'd like with them.
However acknowledgement (and pull requests) are appreciated. You can optionally includelicense.sh so the next person knows where to find them.
Here's an example of how create and compress a custom set of functions. Usinggrep -v '^#' | grep -v ' #' | tr -s '\n'
strips away comments and blank lines.
cat \ license.sh \ is_command.sh \ uname.sh \ untar.sh \ mktmpdir.sh \ http_download.sh \ hash_sha256.sh \ license_end.sh| \ grep -v'^#'| grep -v' #'| tr -s'\n'
Some of these are new, some are these are pulled from old code I wrote. All can definitely beimproved. Pull requests very welcome:
- Simplify
- Clean up local variable use
- Remove any "exit 1" I may have left behind
I'm unlikely to work on this in the short term, but.. someone, someday could:
- Probably write the test harness in go, not shell.
- Using travis.ci we can definite test ubuntu, centos and alpine/busybox using docker
- Can we test macOS on travis? They support something here but unclear how it works.
I've start to write doco in Markdown as shell comments. The plan would be to extract it to standalone markdown so it would display on GitHub.
About
portable functions for posix shell environments