General :: Join With Gzipped Files?
Oct 13, 2010
I want to use the command line join utility on two files. Unfortunately, they're gzipped. Because they're both gzipped, I can't use gzip -cd. Is there a slick way to do this without having to unzip them?
View 1 Replies
ADVERTISEMENT
Jul 23, 2011
Searching Google on how to join/merge many mp3 files, it suggests that I should just cat them together.That might "work", but clearly it is not the correct way to do it, as each header and set of IDv3 tags will also be concatenated.Does a Linux program exist that can be scripted to join/merge many mp3?Can mplayer/mencoder/ffmpeg do it?
View 2 Replies
View Related
Oct 24, 2010
How do you join multiple MP3 files into one? "cat" and "mp3wrap" are no good as they produce non standard MP3 files. I know I can use audacity, but when you have 1000's of MP3 files to join into one, it takes too long.
View 2 Replies
View Related
Dec 17, 2010
How to join two ISO image files in Linux?
View 8 Replies
View Related
Apr 13, 2010
i have started using linux for less than 6 months. now i have come across a problem with pdf files in linux. i want to join different pages from different pdf files into single pdf file.i have come across softwares that do this but they perform this using page numbers from pdf files.but i need to do this based on keywords in different pages .for eg there 3 pdf files
india.pdf
contents:languages
.........
........
places
......
......
achievments
......
[Code]....
now i have to create a pdf file langunage.pdf ,combining the topic languanges from three pdf files america.pdf,india.pdf,china.pdf how can i do it?? whether there is any open source software for doing this?.
View 3 Replies
View Related
Mar 15, 2011
I have got a backfile with extension .tar.gz.enc. After fooling around I found out that it is encrypted gzipped tarball.
View 2 Replies
View Related
Apr 18, 2010
I attempted this afternoon to do something I believe I did in the past using tshark, to no avail.
Code:
sudo tshark -V > dumpfile
That is the code, and from what I recall of times since past when this was done, gzipped packets were subsequently decoded under a section "Uncompressed Entity Body". However, today, nothing was decoded. I can grep the output and see that the gzipped traffic is being identified, but the subsequent decoding of it isn't there.
Might anyone have a solution that I am unaware of? As I said, I am almost certain I have done this in the past. The fact that it doesn't work now is very confusing to me.
If the specifics are of interest, I'm running Ubuntu 9.10, and the traffic I was looking to decode involved the html content of Google search results. Specifically, the gzipped encoding should be able to be processed with tshark to output html with tshark's -V switch.
View 1 Replies
View Related
Mar 2, 2011
I am trying to understand the join command. I wish to join two files:
Code:
$ cat test1
a 0
b 2.51
c 19.85
$ cat test2
a 0
b 2.51
[Code]...
this is great but I do not understand why join ignores the -e flag and fails to insert FOO in the empty field.
View 1 Replies
View Related
Jun 19, 2011
I want to join .ogv files that have been encoded with my all time favourite encoder 'thoggen'? I know cat will join VOB files. The cat command is making very strange noises in my terminal and sending out screwed up letters that i have never seen..)
View 5 Replies
View Related
May 11, 2010
I've got a collection of comics on my computer which consist of single images in .jpg. I am trying to join them all to a big .pdf, so that I end up with one e-book per comic instead of a bunch of single images. I already tried importing it to Open Office, but that way I will have to rescale every single image to fit a page, which would take ages.
View 3 Replies
View Related
Dec 17, 2010
How can I combine 2 video files into 1 using FFMPEG? I've tried the following command......
cat intermediate1.mpg intermediate2.mpg > intermediate_all.mpg
....the result being only 1 of the video files combined but the overall file size is equivalent to the 2 files combined together.
View 1 Replies
View Related
Jul 4, 2010
I want to join 4 flv files,I am running Ubuntu 10.4 LTS seems to me that joining flv files in Ubuntu it's a very difficult task.
View 2 Replies
View Related
Jan 22, 2010
I have 2 text files : file1.txt and file2.txt
cat file1.txt
15 this is a sentence containing various words and spaces
34 this is a another sentence containing various words and spaces
cat file2.txt
2 this is sentence1file2
6 this is sentence2file2
54 this is sentence3file2
I would like to join these 2 files. The result should look as follows :
cat joinedfile.txt
2 this is sentence1file2
6 this is sentence2file2
15 this is a sentence containing various words and spaces
34 this is a another sentence containing various words and spaces
54 this is sentence3file2
==> so the joined file must be sorted on the first number. Any ideas how this can be achieved ?
View 4 Replies
View Related
Nov 27, 2010
I have to merge two different pdf files and I don't know how to do this. ..(I use opensuse 11.3 with gnome).
View 9 Replies
View Related
Nov 27, 2010
How to use ffmpeg or memcoder to join two .ogv files into a single .ogv ??Let's suppose the first .ogv video file is named as "01.ogv" and the resolution is 800*600;the second .ogv video file is named as "02.ogv" and the resolution is 720*576.I'd love to join two video files into a whole one, with the resolution 320*240.
View 1 Replies
View Related
Apr 28, 2011
I am downloading a set of files that were split by a program called ffsj
http://www.jaist.ac.jp/~hoangle/filesj/
The Fastest File Splitter and Joiner.
I have been googling it, but I am not finding anything that is telling me how I might join these files using my CentOS Linux. How can I join these files using CentOS?
View 5 Replies
View Related
Jun 24, 2010
The other day, I needed to send the bank few signed documents (~40 pages). Scanned the signed documents in jpg format and wrote up this script to make a bound pdf. I find it quite useful- have fun.
View 1 Replies
View Related
Nov 6, 2010
I am looking for a program that will take multiple avi files and join them into one file
View 8 Replies
View Related
May 30, 2010
Is there is any application to join files downloaded from rapidshare??Generally i use hjsplit to join these files in windows.. what application i have to use to join those files in ubuntu.They have an extension like 001,002,etc.
View 9 Replies
View Related
Aug 19, 2010
I have a bunch of files that contain a date, then data. When I use join, I get exactly the output I need. But manually joining the first with the second, then that output with the third and so on would take days. I have thousands of files. Can any of you folks help me write a script that would do this?To put it another way, for clarity's sake, here is what I am currently doing
If I were to repeat that 3000 times the final output would be what I need. I know a simple script would do this for me, but I can't figure out how to write it.
View 12 Replies
View Related
Sep 19, 2010
This should be easy but despite all the hints and tricks I've read, I cannot make this work. I have 130+ files with the names filename.avi.001, filename.avi.002, filename.avi.003 all the way up to filname.avi.132. How do I join them? A simple cat command does not work, neither does avimerge or any other utility I can find. I'm guessing because the file extension is a number and not .avi. Is there and easy way to rename them all and then join them? I can't be the only one with this issue but I've scoured the forums and found nothing.
View 7 Replies
View Related
Apr 30, 2010
I'm trying to understand how deb packages work. Are there source debs?I assumed there were, but from[URL].. I see that source is distributed in a GZipped file.
View 3 Replies
View Related
Jun 10, 2009
Is it possible to create and edit .gz Gzipped archives in Ark?
View 1 Replies
View Related
Aug 12, 2011
I have $db and $DATE set in my bash script, then I need to join them like this: mysqldump --user=usr --password=pss --databases $db | gzip > /backups/sqlNew/$db_$DATE.sql.gz;
Unfortunately, that doesn't work. How do I properly join those 2 variables into a filename?
View 1 Replies
View Related
Jan 13, 2011
Is it possible to add/join my Linux Suse 11.3 server with 2 domains ? I know I can do that with Windows PC, but I never try that with my Linux box. FYI, my Linux server is already joined with a domain, now I want to join my box with another domain and I don't want to take it off the current joined domain.
View 1 Replies
View Related
Mar 11, 2010
I am new to Debian Linux and I have just installed the software. How can I join the computer to a Windows domain? How can I configure the network?
View 1 Replies
View Related
Feb 10, 2011
Going through book, "Guide to UNIX Using Linux". I am doing one of the projects that has me writing scripts to join files. Here is my pnumname script and I am extracting the programmers names and numbers from the program file and redirecting the output to the file pnn. I then created a joinall script where I am trying to join the files pnn and pnumname and redirect the output to pactrep. When I run the script sh joinall and use less to display the contents of the redirected file pactrep, I get an error- join: extra operand `pnum'
Try `join --help' for more information.... I went to the man pages but I still (obvious) do not have a solid grasp.
#=======================================================
# Script Name: pnumname
# By: J.D.
[code]....
View 1 Replies
View Related
Jun 16, 2010
I am looking for a command line tool to join 2 video files, however I want the videos joined split screen frame by frame instead of one after another.
Any ideas?
Seems this is not possible with ffmpeg.
View 1 Replies
View Related
Dec 13, 2010
For example: file a:Tom:blackLily:pinkfile b:Tom:bigKate:smallAnd, the result:join -t: a1 a ot:Tom:black:bigLily:pinkBut what I want is:Tom:black:bigLily::pink
View 2 Replies
View Related
Aug 18, 2010
We've been running samba on linux for a while and everything was fine. All of a sudden when you add new clients to the domain you get the error message :Logon Failure:unknown user name or bad password. This to me seems like a windows error message and not a samba error. When you remove an existing machine (ie on domain) and then try to rejoin it to the domain you fail.
View 4 Replies
View Related