J'ai un script bash qui fonctionne sur Ubuntu mais pour OS X 10.9 j'obtiens l'erreur pour la commande split:
split -b 1000000 -a 3 -d $F $F && rm $F || { echo "Error: 'split' command not installed" ; exit 1 ; }
split: illegal option -- d .Selon la page man split, -dest
   -d, --numeric-suffixes
          use numeric suffixes instead of alphabeticExiste-t-il une solution pour cela?