Skip to content

Instantly share code, notes, and snippets.

@Kyborg2011
Created July 6, 2017 09:16
Show Gist options
  • Save Kyborg2011/42afd8a5cc315f051c4ee4ac682101d5 to your computer and use it in GitHub Desktop.
Save Kyborg2011/42afd8a5cc315f051c4ee4ac682101d5 to your computer and use it in GitHub Desktop.
Some experiments on Bash
#!/bin/bash
first=25601
step=100
while [ $first -lt 130900 ]
do
./app/console app:patients:load --default_pathname="$first" --default_filename="$step" & wait $!
first=$(($first+$step))
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment