8 lines
112 B
Plaintext
8 lines
112 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
cat > test.js << EOF
|
||
|
print("hi");
|
||
|
EOF
|
||
|
|
||
|
valgrind --log-file=$LOGDIR/valgrind.log $SANDBOXOS test.js
|