Created
March 30, 2014 10:14
-
-
Save rondinif/9870604 to your computer and use it in GitHub Desktop.
Come ottenere il nome dell'ultimo file scaricato, come copiare l'ultimo file scaricato in file di lavoro temporaneo.
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
> ls -t ~/Downloads | head -1 | |
LISTA_MOVIMENTI_20140330101644484.csv | |
> cp `ls -t ~/Downloads | head -1` workfile.csv | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Compare the content of a baseline file with the content of the last downloaded file: