mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
6 lines
49 B
Bash
6 lines
49 B
Bash
#!/bin/bash
|
|
for f in test/*.js
|
|
do
|
|
node $f
|
|
done
|