Thanks for your assistant
I want to split a file with the split command. When i use this command the files have the extension xxx. I want to modify this result with the extension p01,p02,p03,p04 ....
I did it with dd command. but i would like to do this with split command
for
do
dd if= of= bs= count=
mv
dd if= of= bs= skip=
mv
done
split -b 2240000 file1 file2
file2.p01
file2.p02
.
.
.
.
Thanks
I want to split a file with the split command. When i use this command the files have the extension xxx. I want to modify this result with the extension p01,p02,p03,p04 ....
I did it with dd command. but i would like to do this with split command
for
do
dd if= of= bs= count=
mv
dd if= of= bs= skip=
mv
done
split -b 2240000 file1 file2
file2.p01
file2.p02
.
.
.
.
Thanks