bake/README

67 lines
2.3 KiB
Plaintext
Raw Normal View History

--- README
2023-11-12 23:34:56 -05:00
A tool to run embedded scripts.
2023-09-27 01:28:54 -04:00
Bootstrap with ./shake bake.c
then compile further with ./bake,
install by running ./install.sh
2023-11-12 23:34:56 -05:00
---
2023-11-12 23:34:56 -05:00
bake [-chln] [-s <n>] <FILENAME> [ARGS...]; version 20240804
2023-09-27 01:28:54 -04:00
Bake is a simple tool meant to execute embedded shell commands within
any file. It executes with /bin/sh the command after a "@BAKE " to
the end of the line (a UNIX newline: '\n').
2023-09-27 01:28:54 -04:00
It expands some macros,
@NAME - filename
@SHORT - shortened filename
@ARGS - other arguments to the program
@LINE - line number at the selected @BAKE
All macros can be exempted by prefixing them with a backslash,
which'll be subtracted in the expansion. multi-line commands may be
done by a leading backslash, which are NOT subtracted.
2024-02-14 13:26:19 -05:00
It has five options, this message (-h, --help); prevents the execution
of the shell command (-n, --dry-run); disable color (-c, --color); list
(-l, --list) and select (-s<n>, --select <n>) which respectively lists
all @BAKE commands and select & run the Nth command.
2023-09-28 02:20:48 -04:00
It roots the shell execution in the directory of the given file.
Licensed under the public domain.
2023-11-12 23:34:56 -05:00
---
2023-09-27 01:59:13 -04:00
Shake
2023-09-27 01:28:54 -04:00
Bake was inspired by the Bash-based Shake utility (formerly eMake, he
liked my suggestion for a name). It is included under authorization
of its creator. The original version of Shake may be found at:
<http://bis64wqhh3louusbd45iyj76kmn4rzw5ysawyan5bkxwyzihj67c5lid.onion/anon/shake>
2023-09-28 02:20:48 -04:00
Bake includes a modified Shake, both after installation and as a
bootstrapper. The modified version includes all features of Bake with
the exceptions of multi-line commands. It is not a general
replacement for Bake.
2023-09-28 02:20:48 -04:00
Changelog
2023-09-28 02:20:48 -04:00
Bake was created on 2023/09/13, and is complete as of 2024/03/02.
2023-09-28 02:20:48 -04:00
24/08/04 - Updated version!
2023-09-27 01:28:54 -04:00
Bake is has been finished for a while but I thought the code could use
a checkup with GNU complexity, and this gave me a reason to rewrite
the important parts into a more sane manner. I had, at the same time,
been requested to extend Bake with the @LINE and list/select.
The changeset is large enough to possibly introduce bugs, and the last
version of Bake is, in my opinion, highly reliable. This newer version
needs to be tested a bit more to confirm full compatibility.
changes - Rewrite of the code; Removal of -x --expunge; Addition of
@LINE & @NAME, list, & select.