get_cifar-10.sh 149 B

1234567
  1. #!/usr/bin/env sh
  2. ROUTE=https://www.cs.toronto.edu/~kriz/
  3. ARCHIVE=cifar-10-python.tar.gz
  4. wget "$ROUTE$ARCHIVE" &&
  5. tar -xf $ARCHIVE &&
  6. rm -r $ARCHIVE