A "simple" find / xargs would do:
find -maxdepth 1 -type f -print0 | xargs -r -0 -P0 -n 500 sh -c 'mkdir newdir.$$; mv "$@" newdir.$$/' xx
Explanation:
- find
-maxdepth 1 prevents find from recursively traversing any directories, safety, not needed if you know you don't have directories
-type f only find files
-print0 separate files with null char instead of LF (to handle strange names)
- xargs
-r don't run with empty argument list
-0 read files separated with null
-P0 create as many processes as you need
-n 500 run each process with 500 arguments
- sh
-c run command line script provided as next argument
mkdir newdir.$$ make a new directory ending with the shell process PID
mv "$@" newdir.$$/ move the arguments of the script (each of them quoted) to the newly created directory
xx name for the command line provided script (See sh manual)
Note that this is not something I would use in production, it's based mostly on the on the fact that $$ (pid) will be different for each process executed by xargs
If you need the files sorted you can trow a sort -z between find an xargs.
If you want more meaningful directory names you can use something like this:
echo 1 >../seq
find -maxdepth 1 -type f -print0 |sort -z | xargs -r -0 -P1 -n 500 sh -c 'read NR <../seq; mkdir newdir.$NR; mv "$@" newdir.$NR/; expr $NR + 1 >../seq' xx
echo 1 > ../seq write the first directory suffix in a file (make sure it's not in the current directory)
-P1 tell xargs to run one command at a time to prevent race conditions
read NR <../seq read the current directory suffix from the file
expr $NR + 1 >../seq write the next directory suffix for the next run
sort -z sort the files