Created
April 26, 2018 06:37
-
-
Save GzuPark/2f0dcae3d46e6ba9fe315e55c055610a to your computer and use it in GitHub Desktop.
This file contains 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 | |
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