ref: b2790d72b8687dfd58d4faab2af0ee27abb3e618
parent: e45e8ea2c6a8c075f13665ef2cae7cd19878c129
author: Jacob Moody <moody@posixcafe.org>
date: Mon Sep 1 13:29:29 EDT 2025
more cleanup
--- a/README
+++ b/README
@@ -1,10 +1,10 @@
Basics:
Requires $AWS_ACCESS_KEY_ID, $AWS_SECRET_ACCESS_KEY, and $AWS_ENDPOINT_URL_S3 defined
- Usage: 6.out cat s3://bucket/file
- Usage: 6.out cp source s3://bucket/destination
- Usage: 6.out cp s3://bucket/source <destination>
- Usage: 6.out rm s3://bucket/path
- Usage: 6.out ls s3://bucket/prefix
+ Usage: s3 cat s3://bucket/file
+ Usage: s3 cp source s3://bucket/destination
+ Usage: s3 cp s3://bucket/source <destination>
+ Usage: s3 rm s3://bucket/path
+ Usage: s3 ls s3://bucket/prefix
Specifics/Bugs:
Uses webfs(4)
--- a/mkfile
+++ b/mkfile
@@ -2,6 +2,8 @@
BIN=$home/bin/$objtype
+TARG=s3
+
OFILES=\
xml.$O\
s3.$O\
--
⑨