Skip to main content

Questions tagged [split]

Filter by
Sorted by
Tagged with
3 votes
3 answers
1k views

I have a PDF file with multiple pages, and I want to write a command which extracts some of these pages into a new, separate PDF file; and the pages of interest are not necessarily a contiguous range. ...
einpoklum's user avatar
  • 11.1k
-1 votes
2 answers
83 views

Update: Up to 2 "/" in the string. String structure is either: Character set name/LF Character set name/CRLF Character set name/CRLF/(unknown purpose, likely a number) Character set name ...
strider's user avatar
  • 113
0 votes
1 answer
106 views

I have a really large archive consisting of really small files, concatenated into a single text file, with a "" dilimiter. For smaller archives, I would split the archive using "" ...
Alex's user avatar
  • 1,240
2 votes
1 answer
180 views

In my case, the big file is tar.gz, I have myBigFile.tar.gz with size 52GB, I splitted it with chunk size 2GB therefore I have 27 parts file. Here is the code I program from scratch: from time import ...
Muhammad Ikhwan Perwira's user avatar
2 votes
1 answer
195 views

On Ubuntu 22.04, I found these 2 methods will get different sha256 of archive_tgz tar czf /a/archive_tgz . tar czf /dev/stdout . | split -d -b 200M - /a/archive. && cat /a/archive.* > /a/...
Azreal's user avatar
  • 43
1 vote
3 answers
748 views

I've got a program that will be generating 4 large binary files (400GB+ each) that I need to upload to AWS S3 as quickly as possible. I'd like to begin uploading before the files are completely ...
Alistair Swanson's user avatar
0 votes
2 answers
357 views

I have a really big file that looks like this: >name1 ACGTACGTACGT ACGTACGTACGT ACGTACGTACGT ACGTACGTACGT >name2 ACGTACGTACGT ACGTACGTACGT ACGTACGTACGT >name ACGTACGTACGT ACGTACGTACGT ...
msening's user avatar
1 vote
2 answers
223 views

I am currently working with a large fasta file (3.7GB) that has scaffolds in it. Each scaffold has a unique identifier that starts with > on the first line and on the consecutive line it has the ...
Nadia Tamayo's user avatar
0 votes
0 answers
82 views

I am using the split command in cshell to split a file into smaller files. Since the split command names the output files xaa,xab,xac.... i have to rename them. I want to store the split commands ...
coolguy123's user avatar
9 votes
2 answers
1k views

I have Afile made by the equivalent of cat a.gif b.7z > Afile. How may I split Afile into the original a.gif and b.7z files?
user536180's user avatar
1 vote
0 answers
1k views

This question is related to this post here: Cloning/Splitting a serial port (COM) port in Ubuntu I followed the steps to make the virtual ports but the problem is that I need full-duplex ...
Jason O's user avatar
  • 111
0 votes
1 answer
199 views

Currently using following model, but one needs double the amount of disk space to restore compressed archive given one has to pipe all parts to tar before one can delete them. $ COPYFILE_DISABLE=true ...
sunknudsen's user avatar
16 votes
1 answer
3k views

So I'm trying to split a 64MB file FileCarve.001 into 512 byte segments (each block is 512 bytes long). I need to make sure the file has the same data when split into smaller files, so I cat all the ...
FlashDaggerX's user avatar
8 votes
1 answer
2k views

For my work, I try to split my new ultrawide monitor in 3 virtual screens on Ubuntu (I don't want to use tile tools as gTile). My first test using "xrandr" was OK when I selected "xorg&...
Philippe's user avatar
3 votes
3 answers
2k views

I've read up on a few answers here in reference to quoting variables on the shell. Basically, here's what I'm running: for f in "$(tmsu files)"; do echo "${f}"; done this has the ...
Harv's user avatar
  • 2,602
1 vote
1 answer
152 views

I would like to split an input file on character count (ASCII is fine), combined with new lines as well. That is, every group of 10000 character should be seen as one record to be piped into the child ...
Frazier Thien's user avatar
2 votes
2 answers
3k views

I have a large mp3 file; I want to split it into 480 mp3 files in different time points. I want to know if there is an easy way to do it other than splitting it one by one. Can I provide the different ...
YucefBerus's user avatar
1 vote
1 answer
10k views

I am trying to use split() with awk. I am splitting the contents of $7 with split() into an array, but not sure how to print the contents starting from reverse order. The field $7 is of variable ...
Jason Aruni's user avatar
10 votes
1 answer
3k views

As an old VIM user, attracted to it in the first place especially because of its straightforward regex substitutions that allow to work really fast, I'm not really expecting VIM to have such a feature....
tomoyo255's user avatar
  • 203
0 votes
1 answer
474 views

I want to print output of below command to file, can you help me I tried 2>&1 even 2>> also dd if=/dev/random bs=1 count=1000 status=progress |split -b 10 -a 10 I have other dd command ...
Samurai's user avatar
  • 95
4 votes
2 answers
2k views

I have a csv file with the format: Input.csv: TIMESTAMP,Data1,Data2,Data3,Data4 "2021-01-03 00:00:00",80953,3.243183,2.943338,358.0123 "2021-01-03 00:01:00",80954,2.173187,1.990327,...
dante_t's user avatar
  • 151
1 vote
0 answers
200 views

I am trying to archive a directory containing many subdirectories and files, most of which are JPEG files. I would like to run each file through JPEG XL before adding to the tar archive, to reduce ...
jl6's user avatar
  • 1,485
2 votes
1 answer
2k views

I'm having trouble with a large text file (30GB) I would like to create smaller files from it (5GB lets say) But sadly I don't have no more storage (only ~10G is available). This line: split -b 5g &...
Andras Karpati's user avatar
0 votes
0 answers
983 views

I'm splitting a large CSV file with small chunks using the split command. Each file should contain 1000 rows only. The command I used is, cat large.csv | split -a3 -l1000 --filter='gzip > $FILE.gz'...
TheDataGuy's user avatar
4 votes
1 answer
987 views

i have a file that contains several lines(9074 line), i want to split the file into 10 files contain the same number of lines except the last file that contain the remainder number of lines split -l `...
user441167's user avatar

1
2 3 4 5 6