Skip to content

Instantly share code, notes, and snippets.

@fcamblor
Last active December 6, 2019 13:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fcamblor/9b29df5d0aa19c7473b489a074920d65 to your computer and use it in GitHub Desktop.
Save fcamblor/9b29df5d0aa19c7473b489a074920d65 to your computer and use it in GitHub Desktop.
mv / cp latest download in target dir
#!/bin/bash
function cpLatestDlTo(){ cp "$HOME/Downloads/$(ls -t ~/Downloads | head -n 1)" "$1" }
function mvLatestDlTo(){ mv "$HOME/Downloads/$(ls -t ~/Downloads | head -n 1)" "$1" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment