Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はかなり簡単な質問があります:
exec('split -d -l 10 _.txt part');
これにより、_.txt ファイルがチャンク part00、part01 などに分割されます。これらのチャンクのファイル拡張子をどうにかして設定できますか? ありがとうございました、
--filterに記載されているオプションを使用することで可能ですinfo coreutils 'split invocation':
--filter
info coreutils 'split invocation'
split -d -l 10 _.txt part --filter='cat > $FILE.txt'
これにより、 part00.txt、part01.txtなどが作成されます。バイナリファイルでも機能するようです(の-b代わりに-l)。
-b
-l