anyone here familiar with the 7z CLI?
i am trying to use it to split a file into smaller chunks (volumes) WITHOUT producing any specific archive format. i just want to split a file.
eg. file.gpg, is 1500MB, and i want to produce three 500MB volumes named file.gpg.001, file.gpg.002 ... file.gpg.005
I've tried:
7z a -m0=copy -v500m file.gpg file.gpg
..but it complains.
If I do this:
7z a -m0=copy -v500 file file.gpg
..it produces, file.7z.001, file.7z.002 ... file.7z.005
i am trying to use it to split a file into smaller chunks (volumes) WITHOUT producing any specific archive format.
i just want to split a file.
split -b 1500MB -d file.gpg file.gpg.
7z a -m0=copy -v500m file.gpg file.gpg
..but it complains.
7z a -m0=copy -v500m file.gpg file.gpg
..but it complains.
Does it have to be 7z? What about just 'split' ? It won't do the naming convention you gave, but it's just three files...
split -b 500M file.gpg
I am not familiar enough with 7z to make it do this. If it were me, i would use SPLIT.EXE from DJGPP's textutils package.
split -b 1500MB -d file.gpg file.gpg.
<http://www.delorie.com/pub/djgpp/current/v2gnu/txt20br3.zip>
<https://www.gnu.org/software/coreutils/manual/html_node/split-invocation.html>
| Sysop: | Eric Oulashin | 
|---|---|
| Location: | Beaverton, Oregon, USA | 
| Users: | 104 | 
| Nodes: | 16 (1 / 15) | 
| Uptime: | 09:50:36 | 
| Calls: | 7,081 | 
| Files: | 9,223 | 
| D/L today: | 
  				19  				files  				 (2,246K bytes)  | 
  		
| Messages: | 373,965 |