/'baʃlɪt/
noun: A tiny piece of shell code.
Bashlets is a new modular extensible toolbox for Bash, written in Bash.
The project is still in its early days, yet it is quite usable and the core features are already there: smart loading of modules, integration with git, partial OO support, and more.
The project has a threefold aim:
- bringing together the largest possible corpus of useful pieces of reusable Bash code, with everything organized in as neat a fashion as we can think of
- shielding the user from some of the Bash technicalities and idiosyncrasies
- writing a consistent and portable API (well, kind of) towards the operating system
I want to stress the fact that this is not a generically-compliant POSIX shell project; on the contrary, the aim of the project is to write code that will run on (and require) Bash. As to the rest of the environment, however, the long-term goal is to get rid of dependencies on external tools as far as it is possible (or reasonable) to do so, even though at present the code does assume a reasonably standard GNU/Linux system.
TODO
Of course there is so much work to do, and I'd be delighted if somebody is willing to step in with code, enhancements, suggestions, and of course test cases and bug reports!
A reasonably sane GNU environment is assumed to be at hand. More specifically, you need:
- Bash
- Git
- GNU Coreutils
- GNU grep, sed, awk
- curl
- the jq command-line JSON processor
- the gitty Bash client for the GitHub API
- Make
To run the test suite, you need Sam Stephenson's Bash Automated Testing System.
To check for proper programming, you need ShellCheck.
Extension packages may have additional requirements.
$ git clone https://github.com/reale/bashlets.git
$ cd bashlets
$ make install
That's all!
To run the test suite:
$ make test
If you want to check for proper programming:
$ make lint
There is a growing corpus of additional packages available. To install package package
just do
$ bashlets install -D package
$ source bashlets core::library::interact
$ bash$$ interact say_hello
Hello, this is bashlets 1.0 speaking!
$ source bashlets core::datatype::string
$ bash$$ string random 32
6J-%.v(M)`N_de&2fvdVd;yy R;FRt=[
$ source bashlets core::datatype::uuid
$ bash$$ uuid random
2fc83419-df73-4cfd-bf9d-85634c8370fd
$ bash$$ uuid validate 2fc83419-df73-4cfd-bf9d-85634c8370fd || echo INVALID
$ bash$$ uuid validate 2fc83419-df73-4cfd-_f9d-85634c8370fd || echo INVALID
INVALID
$ source bashlets core::datatype::semver
$ bash$$ semver sort 1.44 1.4 1.4.4 1.4.4a 1.4-1234
1.4
1.4-1234
1.4.4
1.4.4a
1.44
$ source bashlets core::cache::fs
$ cache=$(bash$$ fs create)
$ # set key/value in a subshell...
$ ( bash$$ fs set $cache question 'To be, or not to be...' )
$ # read value in the parent shell
$ bash$$ fs get $cache question
To be, or not to be...
$ bash$$ fs destroy $cache
$ source bashlets core::stream::convert
$ cat << ??? | bash$$ convert unix2dos | file -
> Shall I compare thee to a summer's day?
> Thou art more lovely and more temperate.
> Rough winds do shake the darling buds of May,
> And summer's lease hath all too short a date...
> ???
/dev/stdin: ASCII text, with CRLF line terminators
$ source bashlets core::math::icomplex
$ i=$(bash$$ icomplex create 0 1)
$ bash$$ icomplex to_real $(bash$$ icomplex square $i)
-1
$ source bashlets core::ux::repl
$ bash$$ repl start
> quit
$
TODO
TODO
- Advanced Bash-Scripting Guide
- BashGuide
- The Bash Hackers Wiki
- Bash Design Patterns
- BASH Frequently Asked Questions
- Bash Pitfalls