Skip to content

Instantly share code, notes, and snippets.

@simbamangu
Last active February 11, 2021 08:27
Show Gist options
  • Save simbamangu/3e7b6f6daf86b0e164363a165931a40a to your computer and use it in GitHub Desktop.
Save simbamangu/3e7b6f6daf86b0e164363a165931a40a to your computer and use it in GitHub Desktop.
Copy 'n' files to subfolder
# Copy 'n' files to subfolder
# Usage:
# cpn.sh N DEST
# Copies 'N' files to destination folder DEST
ls | sort | head -n $1 | xargs cp "{}" -t $2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment