joybhallaa
5/11/2020 - 9:13 AM

Move/Copy first/last n files to subdirectory

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"