4 lines
157 B
Bash
Executable file
4 lines
157 B
Bash
Executable file
#!/bin/bash
|
|
wget -O cifar-10-python.tar.gz https://www.cs.toronto.edu/~kriz/cifar-10-python.tar.gz
|
|
tar -xvf cifar-10-python.tar.gz
|
|
rm cifar-10-python.tar.gz
|