Created
October 11, 2020 08:14
-
-
Save montoyaaguirre/063be199ed965cd8b826bc60f268fa95 to your computer and use it in GitHub Desktop.
Copy files maria
This file contains hidden or 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
| 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