Created
April 13, 2020 08:13
-
-
Save koobitor/31ad0ff9a4e8e6a4056116764daa862a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
index=1 | |
while [ $index -le 100 ] | |
do | |
node index.js $index | |
index=$(( $index + 1 )) | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment