Skip to content

Instantly share code, notes, and snippets.

@montoyaaguirre
Created October 11, 2020 08:14
Show Gist options
  • Save montoyaaguirre/063be199ed965cd8b826bc60f268fa95 to your computer and use it in GitHub Desktop.
Save montoyaaguirre/063be199ed965cd8b826bc60f268fa95 to your computer and use it in GitHub Desktop.
Copy files maria
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment