Skip to content

Instantly share code, notes, and snippets.

@GzuPark
Created April 26, 2018 06:37
Show Gist options
  • Save GzuPark/2f0dcae3d46e6ba9fe315e55c055610a to your computer and use it in GitHub Desktop.
Save GzuPark/2f0dcae3d46e6ba9fe315e55c055610a to your computer and use it in GitHub Desktop.
#!/bin/bash
echo "Kind: $1"
echo "Session: $2"
echo "Epochs Start: $3"
echo "Epochs End: $4"
echo "Account: $name"
if [ $name -eq ""]; then
name="깃계정"
fi
for i in $(seq $3 $4)
do
nsml submit $name/$1/$2 $i;
echo Done. $name/$1/$2 $i;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment