Skip to content

Instantly share code, notes, and snippets.

@joybh98
Created May 11, 2020 09:13
Show Gist options
  • Save joybh98/bf8799da7b22f39609aa35b6d9f60629 to your computer and use it in GitHub Desktop.
Save joybh98/bf8799da7b22f39609aa35b6d9f60629 to your computer and use it in GitHub Desktop.
Move/Copy first/last n files to subdirectory
# First n files
$ find . -maxdepth 1 -type f |head -n|xargs cp -t "$destdir"
# Last n files
$ find . -mindepth 1 -type f |head -n|xargs cp -t "$destdir"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment