Sponsored Content
Top Forums Shell Programming and Scripting negatively concatenating files Post 302213606 by raidzero on Thursday 10th of July 2008 02:54:20 PM
Old 07-10-2008
negatively concatenating files

That subject might sound weird. What I have is two files. One looks like:
Code:
rf17 pts/59 Jul 10 08:43 (10.72.11.22) 27718 pts/59  0:00 b
rf17 pts/3 Jul 10 10:03 (10.72.11.22) 32278  pts/3  1:43 b 
rf58 pts/29 Jul 10 10:09 (10.72.11.51) 44220 pts/29  0:06 b
rf58 pts/61 Jul 10 08:45 (10.72.11.51) 28542 pts/61  0:18 b
rf7 pts/15 Jul 10 10:43 (10.72.11.89) 52326 pts/15  0:00 b 
rf7 pts/49 Jul 10 08:33 (10.72.11.89) 58982 pts/49  0:06 b 
rf56 pts/28 Jul 10 10:04 (10.72.11.9) 17256 pts/28  0:19 b 
rf56 pts/55 Jul 10 08:36 (10.72.11.9) 35368 pts/55  0:49 b

The other looks like:
Code:
rf17 pts/3 Jul 10 10:03 (10.72.11.22) 32278  pts/3  1:43 b  
rf56 pts/28 Jul 10 10:04 (10.72.11.9) 17256 pts/28  0:19 b  
rf58 pts/29 Jul 10 10:09 (10.72.11.51) 44220 pts/29  0:06 b 
rf7 pts/15 Jul 10 10:43 (10.72.11.89) 52326 pts/15  0:00 b

I would like to be able to remove the contents of the second file from the first file, giving, for example, this:
Code:
rf17 pts/59 Jul 10 08:43 (10.72.11.22) 27718 pts/59  0:00 b
rf56 pts/55 Jul 10 08:36 (10.72.11.9) 35368 pts/55  0:49 b 
rf7 pts/49 Jul 10 08:33 (10.72.11.89) 58982 pts/49  0:06 b 
rf58 pts/61 Jul 10 08:45 (10.72.11.51) 28542 pts/61  0:18 b

The first file's contents are always changing, the second file's contents are derived from the first using sort -uk1,1. It might make more sense if I put it all in context. I am trying to make a script (cron job) that checks to see how many duplicate sessions there are for users, and then kill the oldest duplicates while keeping the newest one alive. I know this is possible, in my experience with Unix (and this board) anything is possible. Can somebody tell me how I can do this file operation?
Thank you
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

concatenating x files into a one...

... i have 4 files to concatenate but in a certain order and i wanted to do it in a shorter one line command , if possible ! 4 files : file , file0 , file1 and file2 file1 into file2 file0 into the result file into the result thanks in advance Christian (1 Reply)
Discussion started by: Nicol
1 Replies

2. UNIX for Dummies Questions & Answers

Concatenating records from 2 files

I'm trying to concatenate records from 2 files and output it to a third file. The problem I'm running into is that it seems like the "While" command is limited to processing one file at a time. It seems like you could read a record from file1 into a variable. Then do the same for the for file2.... (4 Replies)
Discussion started by: Powcmptr
4 Replies

3. Shell Programming and Scripting

Concatenating two files

HI I need to concatenate two files which are having headers. the result file should contain only the header from first file only and the header in second file have to be skipped. file1: name age sriram 23 file2 name age prabu 25 result file should be name age sriram 23 prabu ... (6 Replies)
Discussion started by: Sriramprabu
6 Replies

4. UNIX for Dummies Questions & Answers

Concatenating Text Files

Hi, I have 30 text files on UNIX that I need to concatenate and create one big file. Could anyone provide me with a solution (if one exist)? I need the answer asap (today). Thanks a lot. Denis (5 Replies)
Discussion started by: 222001459
5 Replies

5. Shell Programming and Scripting

concatenating similar files in a directory

Hi, I am new in unix. I have below requirement: I have two files at the same directory location File1.txt and File2.txt (just an example, real scenario we might have File2 and File3 OR File6 and File7....) File1.txt has : header1 record1 trailer1 File2.txt has: header2 record2... (4 Replies)
Discussion started by: Deepak62828r
4 Replies

6. Shell Programming and Scripting

Concatenating 3 files into a single file

I have 3 files File1 C1 C2 c3 File 2 C1 c2 c3 File 3 C1 c2 c3 Now i want to have File1 as C1 c2 c3 I File2 as C1 c2 c3 O File3 as c1 c2 c3 D and these 3 files should be concatenated into a single file how can it be done in unix script? (3 Replies)
Discussion started by: Codesearcher
3 Replies

7. Shell Programming and Scripting

Concatenating two files in required format

Firstly one of my mysql queries will yeild following output +-------+---------------------+-------------------+----------------------------------------------------------------------------+ | ID | PLATFORM | SORT_NAME | DESCRIPTION ... (2 Replies)
Discussion started by: vivek d r
2 Replies

8. Shell Programming and Scripting

Concatenating 2 lines from 2 files having matching strings

Hello All Unix Users, I am still new to Unix, however I am eager to learn it.. I have 2 files, some lines have some matching substrings, I would like to concatenate these lines into one lines, leaving other untouched. Here below is an example for that.. File 1 (fasta file): >292183... (6 Replies)
Discussion started by: Mohamed EL Hadi
6 Replies
ppmtosixel(1)                                                 General Commands Manual                                                ppmtosixel(1)

NAME
ppmtosixel - convert a portable pixmap into DEC sixel format SYNOPSIS
ppmtosixel [-raw] [-margin] [ppmfile] DESCRIPTION
Reads a portable pixmap as input. Produces sixel commands (SIX) as output. The output is formatted for color printing, e.g. for a DEC LJ250 color inkjet printer. If RGB values from the PPM file do not have maxval=100, the RGB values are rescaled. A printer control header and a color assignment table begin the SIX file. Image data is written in a compressed format by default. A printer control footer ends the image file. OPTIONS
-raw If specified, each pixel will be explicitly described in the image file. If -raw is not specified, output will default to com- pressed format in which identical adjacent pixels are replaced by "repeat pixel" commands. A raw file is often an order of magni- tude larger than a compressed file and prints much slower. -margin If -margin is not specified, the image will be start at the left margin (of the window, paper, or whatever). If -margin is speci- fied, a 1.5 inch left margin will offset the image. PRINTING
Generally, sixel files must reach the printer unfiltered. Use the lpr -x option or cat filename > /dev/tty0?. BUGS
Upon rescaling, truncation of the least significant bits of RGB values may result in poor color conversion. If the original PPM maxval was greater than 100, rescaling also reduces the image depth. While the actual RGB values from the ppm file are more or less retained, the color palette of the LJ250 may not match the colors on your screen. This seems to be a printer limitation. SEE ALSO
ppm(5) AUTHOR
Copyright (C) 1991 by Rick Vinci. 26 April 1991 ppmtosixel(1)
All times are GMT -4. The time now is 08:05 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy