I have text file with hundreds of lines, space delimited, each line has the same amount of "columns" and the same amount of characters in each, Column 1, Column 2, and Column 3.
I need a script that will print all columns of the "current" line along with the last two columns of the next line ONLY... (3 Replies)
Hello,
I've never used awk before, but from what I've read, it will best suit what I'm trying to do. I have 2 files. I need to replace strings in file1 with the first column of a matching string in file2. Below are examples:
File1:
random-string1
1112
1232
3213
2131
random-string2... (7 Replies)
Hi,
I want to get rid of multiple rows (duplicate, triplicate etc..) for only column 1.
e.g.
iu 2
iu 1
iu 3
k 4
jk 3
nm 4
nm 2
output
k 4
jk 3
thanks (7 Replies)
Hi all,
Could someone help me with the following issue:
1st
I have an CSV file delimiter is ";" I I have a column 7 where I need to do some multiple mathem. operation, I need all values in this columns to be multiplied by 1.5 and create a new CSV file with the replaced values.
2nd.
I... (3 Replies)
Dear all,
I have a large dictionary database which has the following structure
source word=target word
e.g.
book=livre
Since the database is very large in spite of all the care taken, it so happens that at times the source word is repeated
e.g.
book=livre
book=tome
Since I want to... (7 Replies)
Perl script to merge cells
---------- Post updated at 12:59 AM ---------- Previous update was at 12:54 AM ----------
I am using below code to read files from a dir and print to excel.
open(my $in, '<', $file) or die "Could not open file: $!";
my $rowCount = 0;
my $colCount = 0;... (11 Replies)
Hi Everyone,
I have a requirement in ksh where i have a set of files in a directory. I need to search each and every file if a particular string is present in the file, delete that line and replace that line with another string expression in the same file.
I am very new to unix. Kindly help... (10 Replies)
Hello,
I have stucked at one point.
When I run the script, I am asking the script to search in database file and if it's found, do nothing and proceed to next line in database file.
#!/bin/bash
./extract_email.pl output2 > database
while read -r COL1
X=$(grep $COL1 database )
if ]... (7 Replies)
Discussion started by: baris35
7 Replies
LEARN ABOUT CENTOS
picture
Picture(3U) InterViews Reference Manual Picture(3U)NAME
Picture - composite structured graphic
SYNOPSIS
#include <Unidraw/Graphic/picture.h>
DESCRIPTION
A Picture defines a composition of graphic objects. A picture has its own graphics state, which it concatenates with its children's state
when it is drawn or erased. Picture adopts the default concatenation semantics supported by the Graphic base class: The picture's graphics
state effectively overrides its children's so that they are drawn with the picture's state information substituted for their own. A
child's attribute is used only when the picture does not already define it. Moreover, each child's transformer is postmultiplied by the
picture's transformer when the picture is drawn; thus children are drawn relative to the picture's coordinate system.
PUBLIC OPERATIONS
Picture(Graphic* = nil)
Construct a new picture, optionally supply a graphic from which to copy an initial set of graphics state. Picture is derived from
FullGraphic and therefore defines a full set of graphics state.
virtual ~Picture()
The picture deletes its children when it is deleted.
boolean IsEmpty()
Picture defines IsEmpty in addition to the standard Graphic child traversal operations to provide a convenient way to check if the
picture has any children.
PROTECTED OPERATIONS
Graphic* graphic(UList*)
UList* Elem(Iterator)
Convenience functions for extracting a graphic from a UList element and a UList from an iterator.
SEE ALSO Graphic(3U), Iterator(3U), Transformer(3I), UList(3U), pspaint(3U)Unidraw 1 February 1991 Picture(3U)