ops: correct bash escaping

This commit is contained in:
Hunter Miller 2023-01-31 16:41:38 -06:00
parent a59505330d
commit e5d065dfd0

View File

@ -12,11 +12,11 @@ curl https://bootstrap.urbit.org/globber.tar.gz | tar xzk
./zod/.run -d
dojo () {
curl -s --data '{"source":{"dojo":"$1"},"sink":{"stdout":null}}' http://localhost:12321
curl -s --data '{"source":{"dojo":"'"$1"'"},"sink":{"stdout":null}}' http://localhost:12321
}
hood () {
curl -s --data '{"source":{"dojo":"+hood/$1"},"sink":{"app":"hood"}}' http://localhost:12321
curl -s --data '{"source":{"dojo":"+hood/'"$1"'"},"sink":{"app":"hood"}}' http://localhost:12321
}
hood "merge %work our %base"