This tag is used to indicate the process uses the merging of two or more files.
Questions tagged [filemerge]
67 questions
2
votes
1 answer
Issue when merging 2 files into one file in batch
I have an issue when merging 2 files into one file. The first file contains the lines 1 2 3 4 and the second contains the lines 5 6 7.
When I do this: copy test1.txt+test2.txt result.txt I get the below lines. Please see that 4 is near…

cip
- 33
- 5
2
votes
4 answers
iPhone version control tools (subversion)
I've used iPhone SDK and tools for several months. Xcode seems pretty nice, but there is one tool which I don't get: FileMerge. How can anyone use it for comparing files or doing merge?
Seriously now, what do you really use?
My use case is…

JOM
- 8,139
- 6
- 78
- 111
1
vote
1 answer
How to merge two files in python
I have two tab delimited csv files (with headers) that I need to merge in python.
Also, in the merged file I want to add a column in the end to identify the files because though they have same format, they have different data that I need to separate…

sfactor
- 12,592
- 32
- 102
- 152
1
vote
1 answer
Pack a directory (merge files and directories into exe or msi)
There are a lot of tutorials that show on how to merge multiple files (not including folders). It will be nice if I could merge a directory and it's files so that when the user clicks on the exe or msi file windows extracts those files to the…

Tono Nam
- 34,064
- 78
- 298
- 470
1
vote
2 answers
Fast multi-part file merge on Linux
I have 6,369 files of 256 MB each (1.63 TB total) stored in a RAM disk volume on a Linux server equipped with 4 TB of RAM. I need to merge them into a single file stored in the same RAM disk. What kind of merge operation would give me the best…

Ismael Ghalimi
- 3,515
- 2
- 22
- 25
1
vote
1 answer
Combining json files using jq objects with array
I've tried using
jq "reduce inputs.skins as $s (.; .skins += $s)" file1.json file2.json > combined.json
but it just creates two boots.name and fun.name from each file
any way I can use jq and combine the objects and arrays without having…

WatersKolx
- 13
- 3
1
vote
1 answer
why doen't conflict diffs load on Filemerge, when other diffs do?
I have GIT set up to load Diffs in filemerge, but when there are conflicts, it just prints the diff to terminal.
Is there a way around this, or a better app to handle conflicts?

Mild Fuzz
- 29,463
- 31
- 100
- 148
1
vote
1 answer
How to make file flatten while merging two PDF using IronPdf?
I have two PDF files and I want to merge two PDF files in single PDF files using IronPDF (reference from https://ironpdf.com/). Here is the code I am using
var PDFs = new List();
foreach (var file in files)
…

Tejas
- 107
- 4
- 13
1
vote
0 answers
File comparer where files can be edited during compare
Do you know any file merging too, where meantime I can edit files? I do not want save and reload just edit end merging would automatically reloaded.
I tried FileMerge and Kaleidoscope. None of them has this feature. For huge files it would be useful…

János
- 32,867
- 38
- 193
- 353
1
vote
2 answers
Swift - merge files
How can I merge files in Swift / iOS ? The FileManager can move and copy items but I've seen nothing about merging files. I'd like to have something like
FileManager.default.merge(files: [URL], to location: URL) throws
Files can potentially be big,…

Guig
- 9,891
- 7
- 64
- 126
1
vote
1 answer
Cocoapods 1.0 breaks FileMerge
A bit of background:
My team upgraded to cocoapods 1.0 on our main develop branch. After it was committed and push I tried to merge it into my branch. There was a merge conflict in the project.pbxproj. I tried to fix the conflict with FileMerge.…

The Guardian
- 374
- 1
- 7
- 22
1
vote
1 answer
Using OS X FileMerge/opendiff to view git differences, loading all files at once in the directory view
We are version controlling our project using git. Developing under OS X, we'd like to use the FileMerge application distributed with the development tools to display git generated differences:
If we understood correctly, it is possible to configure…

Ad N
- 7,930
- 6
- 36
- 80
1
vote
3 answers
solaris filemerge and pstack equivalents for linux
Accepting the possibility of extreme ridicule, I must admit that I really miss sun Teamware's filemerge tool. I have switched from solaris to red hat linux, and find myself regularly missing filemerge (not to be confused with the Apple tool of the…

kchoose2
- 796
- 1
- 6
- 13
1
vote
2 answers
How to merge two text files using batch script?
I have two text files as A.txt and B.txt with the below contents:
A.txt
value_a1,value_a2
value_b
value_c
value_d
value_e1,value_e2
B.txt
12,14
13
15
16
23,34
I want output file C.txt…

user2017841
- 21
- 1
- 3
0
votes
1 answer
How do I get the TeamWare filemerge GUI to run on OpenSolaris?
How do I get the TeamWare filemerge GUI to run on OpenSolaris?
% filemerge
ld.so.1: filemerge: fatal: libtt.so.2: open failed: No such file or directory
Killed
TeamWare is no longer a supported source management system, but it's is still widely used…

Chris Quenelle
- 801
- 4
- 16