Tagged Questions
The filesplitting tag has no wiki summary.
7
votes
1answer
3k views
How to file split at a line number
I want to split a 400k line long log file from a particular line number.
For this question, lets make this an arbitrary number 300k.
Is there a linux function that allows me to do this?
I know ...
5
votes
2answers
245 views
How does Mercurial handle splitted files?
How does mercurial handle splitted files? What will happen if I create a branch and split a file. Can I easily pull changes from another branch which modifies the original, unsplitted file?
1
vote
2answers
950 views
A way to split a huge XML file into smaller xml files with XSL
I get a huge XML file containing a list of TV broadcasts. And I have to split it up into small files containing all broadcasts for one day only. I managed to to that but have two problems with the xml ...
1
vote
4answers
848 views
How to split file on first empty line in a portable way in shell (e.g. using sed)?
I want to split a file containg HTTP response into two files: one containing only HTTP headers, and one containg the body of a message. For this I need to split a file into two on first empty line ...
1
vote
3answers
2k views
Splitting a file and its lines under Linux/bash
I have a rather large file (150 million lines of 10 chars). I need to split it in 150 files of 2 million lines, with each output line being alternatively the first 5 characters or the last 5 ...
0
votes
1answer
56 views
Folder path of select file in AppleScript
I'm creating simple script to convert mp3 files using shell script. I decided to automate my conversion using applescript.
Basically what I'm doing is selecting mp3 file then splitting that file using ...
0
votes
1answer
177 views
Get input file name in streaming hadoop program
I am able to find the name if the input file in a mapper class using FileSplit when writing the program in Java.
Is there a corresponding way to do this when I write a program in Python (using ...
0
votes
2answers
96 views
C++ file splitter question [closed]
I can easily split the file by using fwrite function and save in a hard-disk like this:
fwrite( buffer, sizeof( char ), bytes_read, outFile );
But I would like to know how can I store each chunk of ...
0
votes
2answers
161 views
Split XML file by number of records/treshold and copy header - XSLT 1.0
I have the following XML structure
<?xml version="1.0" encoding="UTF-8"?>
<ExportData>
<TransportHeader>
<Timestamp>2011-01-16 06:00:33</Timestamp>
<From>
...
0
votes
2answers
99 views
Filesplitter using .php
i m designing a website where users upload file, but the free webhost provides us only 3mb per file limit, so can i design a filesplitter using .php which splits a file(>3mb) into 3mb chunks and then ...
0
votes
3answers
73 views
How to map a set of text as a whole to a node?
Suppose I have a plain text file with the following data:
DataSetOne <br />
content <br />
content <br />
content <br />
DataSetTwo <br />
content <br />
content ...
0
votes
2answers
240 views
WAV file splitter utility
I have a PROGRAMMING task (homework) to investigate brute force neural net methods. That part of the problem is MY homework.
We have to show that certain simple words repeated in a verbal conversion ...
-4
votes
0answers
43 views
.net application to scan the free space in a connected USB device [closed]
I am developing a C#.net application,which will split the file based on the memory space in the USB. Then after splitting the file as required (Ex: If USB of 4gb space has only 800mb free space and ...