Skip to content

Instantly share code, notes, and snippets.

@koobitor
Created April 13, 2020 08:13
Show Gist options
  • Save koobitor/31ad0ff9a4e8e6a4056116764daa862a to your computer and use it in GitHub Desktop.
Save koobitor/31ad0ff9a4e8e6a4056116764daa862a to your computer and use it in GitHub Desktop.
#!/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