Read Ninja build file from command line -
is possible read ninja build file stdin, without build.ninja
or other file present?
yes, use /dev/stdin
filename. note won't work on windows.
echo "# ninja!" | ninja -f /dev/stdin
is possible read ninja build file stdin, without build.ninja
or other file present?
yes, use /dev/stdin
filename. note won't work on windows.
echo "# ninja!" | ninja -f /dev/stdin
Comments
Post a Comment