You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 24, 2020. It is now read-only.
I believe it is a convention that tools that accept file names can be given "-" to indicate stdin so "cat -" is the same as just "cat" (because for cat, stdin is the default source) but the fact is you can specify it explicitly.
Right now "acbuild script -" complains that it cannot find file "-".
Supporting stdin would allow use here-doc / here-text notations and embed ACB scripts into shell scripts
acbuild --debug script - <<END_TEXT
copy $SRC /temp
run -- bash /temp/something.sh
run -- rm -rf /temp
END_TEXT
The text was updated successfully, but these errors were encountered:
I believe it is a convention that tools that accept file names can be given "-" to indicate stdin so "cat -" is the same as just "cat" (because for cat, stdin is the default source) but the fact is you can specify it explicitly.
Right now "acbuild script -" complains that it cannot find file "-".
Supporting stdin would allow use here-doc / here-text notations and embed ACB scripts into shell scripts
The text was updated successfully, but these errors were encountered: