split --bytes 500M --numeric-suffixes --suffix-length=3 foo foo.

#same with short options
split -b 500M -d -a 3 foo foo.


cat foo.* > foo

or for error checking
cat foo.{000..003} > foo