Eu tenho tentado dividir um arquivo grande usando o comando split
, mas junto com isso eu preciso fazer o seguinte:
Eu tentei o seguinte:
split -dl 10000 "/root/Dumps/" "/root/Dumps/split/${new%.txt}";
mas recebo este erro
split: output file suffixes exhausted
e para adicionar a extensão eu uso --additional-suffix=.txt
mas recebo o seguinte erro
split: unrecognized option '--additional-suffix=.txt'
Editar: a saída de apt-cache policy coreutils
é
If 'apt-cache' is not a typo you can run the following command to lookup the package that contains the binary:
command-not-found apt-cache
bash: apt-cache: command not found
Alguma ajuda?
Obrigado antecipadamente