Fixed brainfuck transpiler to accept args

This commit is contained in:
ThreshMain 2021-02-15 17:59:33 +01:00
parent 0e2131eb1d
commit f20c8bafd1
No known key found for this signature in database
GPG key ID: BFC472F2D308EDB3

View file

@ -29,5 +29,8 @@ int main() {
EOF
timeout -s KILL 3 gcc -std=c11 -o binary code.c
# Merging args.args and stdin.stdin for emkc challenges
cat stdin.stdin >> args.args
# execution
timeout -s KILL 3 ./binary < args.args < stdin.stdin
timeout -s KILL 3 ./binary < args.args