diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-05-25 22:03:28 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-05-25 22:03:28 -0700 |
commit | 72cb19d06e0b9828cace88a6ca923a79fa563dc0 (patch) | |
tree | 2ca2b5763f3f693e3ac591242adaaae2c012c43e /txr-embedded-arg.txr | |
parent | d59b921c8ec271ed5861b54186519a09f617aaee (diff) | |
download | txr-72cb19d06e0b9828cace88a6ca923a79fa563dc0.tar.gz txr-72cb19d06e0b9828cace88a6ca923a79fa563dc0.tar.bz2 txr-72cb19d06e0b9828cace88a6ca923a79fa563dc0.zip |
Provide the txr-embedded-arg.txr utility.
* txr-embedded-arg.txr: New file.
* txr.1: Documented.
Diffstat (limited to 'txr-embedded-arg.txr')
-rwxr-xr-x | txr-embedded-arg.txr | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/txr-embedded-arg.txr b/txr-embedded-arg.txr new file mode 100755 index 00000000..fb167508 --- /dev/null +++ b/txr-embedded-arg.txr @@ -0,0 +1,34 @@ +@(do + (defun stream-positioned-to-right-place (name) + (let* ((stream (open-file name "r+b")) + (pre (read-until-match #/@\(txr\)/ stream t))) + (when (or (empty pre) (not (search-str pre "@(txr)"))) + (throwf 'error "~a isn't a TXR executable" name)) + stream))) +@(next :args) +@(cases) +-w +@string +@file +@ (eof) +@ (do + (let ((f (stream-positioned-to-right-place file))) + (with-in-string-byte-stream (s string) + (mapdo (op put-byte @1 f) + (take 127 (pad (gun (get-byte s)) 0))) + (put-byte 0 f)))) +@(or) +@file +@ (eof) +@ (do + (let ((f (stream-positioned-to-right-place file))) + (let ((arg-str (with-out-string-stream (u8) + (mapdo (op put-byte @1 u8) + (take 127 (gun (get-byte f))))))) + (put-line arg-str)))) +@(or) +@ (output) +usage: @{self-path} [-w string] txr-executable +@ (end) +@ (do (exit 1)) +@(end) |