Skip to content

Instantly share code, notes, and snippets.

Run this on terminal from the main data folder:
mkdir -p output && cp ./**/conjunto_de_datos/ce2019_*.csv ./output
How does it work?
mkdir -p output // Create a foler called output
cp // copy
./**/conjunto_de_datos/ce2019_*.csv // origin, matching a pattern a pattern. "*" is a wildcard
./output // destination
#Put this in your project folder
#from the terminal write chmod +x wasprts.sh
#To execute this script, write ./wasprts.sh
#!/bin/bash
echo "Starting..."
echo "Cleaning..."
make clean
echo "Making..."
make
echo "WSIM..."