Sponsored Content
Top Forums Shell Programming and Scripting deleting a pattern from a file Post 302312241 by lassimanji on Thursday 30th of April 2009 05:46:19 PM
Old 04-30-2009
deleting a pattern from a file

say i have a file with the following contents

0x20
0x20
0xc23886
> 0xc12354
> 0xc567555555

i want to delete "> " pattern and keep the rest of the file
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

prom in deleting a pattern

hi guys, i have a directory.inside that so many directories and files are there.i want to search the complete directory for a pattern in all the .txt files.if i will find that pattern then i want to delete that pattern from that file. please help me out. i want it urgent (18 Replies)
Discussion started by: suvendu4urs
18 Replies

2. UNIX for Dummies Questions & Answers

Checking for a file in file pattern before deleting it

Hi, I need a script where I have delete all the files of type abc*.* from the directory /lmn/opq (passed as parameter to script) But I need to check if there is file of type abc*.* existing in the directory or not before I use the rm abc*.* command. Thanks (1 Reply)
Discussion started by: dsrookie
1 Replies

3. Shell Programming and Scripting

deleting lines after pattern using sed

I have seen there are many sed posts but still it is quite difficult to apply other post to my own problem How can I delete all lines in a file from 2 lines after this pattern *End_fine_coreg:_NORMAL to the end of file? Cheers (2 Replies)
Discussion started by: larne
2 Replies

4. Shell Programming and Scripting

deleting multiple accourances of a pattern from a file

I have a .sh file with the following contents: a b c a a b d c i want to delete the multiple occurances and keep one. say there are 3 a's in the file. I want to delete 2 of them and just keep 1 occurance. (11 Replies)
Discussion started by: lassimanji
11 Replies

5. Shell Programming and Scripting

Searching a pattern in file and deleting th ewhole line containing the pattern

Hi All, Please can someone assist in the script I have made that searches a pattern in a file and delete the whole line containing the pattern. #!bin/sh # The pattern that user want to add to the files echo "Enter the pattern of the redirect" read value # check if the user has... (1 Reply)
Discussion started by: Shazin
1 Replies

6. Shell Programming and Scripting

deleting lines in a file that match a pattern without opening it

In Unix, how do I delete lines in a file that match a particular pattern without opening it. File contents are foo line1 misc whatever foo line 2 i want to delete all lines that have the pattern "foo" without opening the file. File should eventually contain misc whatever (1 Reply)
Discussion started by: osbourneric
1 Replies

7. Shell Programming and Scripting

Deleting pattern without removing line

I am trying to delete a pattern without removing line. I searched a lot in this forum and using those I could come up with sed command but it seems that command does not work. Here's how my file looks like: 1 ./63990 7 1171 ./63990 2 2425 ./63990 9 2539 ./63990 1 3125 ./63990 1 10141... (7 Replies)
Discussion started by: shoaibjameel123
7 Replies

8. Shell Programming and Scripting

awk - writing matching pattern to a new file and deleting it from the current file

Hello , I have comma delimited file with over 20 fileds that i need to do some validations on. I have to check if certain fields are null and then write the line containing the null field into a new file and then delete the line from the current file. Can someone tell me how i could go... (2 Replies)
Discussion started by: goddevil
2 Replies

9. UNIX for Dummies Questions & Answers

Deleting a pattern in UNIX without deleting the entire line

Hi I have a file: r58778.3|SOURCES={KEY=f665931a...,fw,221-705}|ERRORS={16_1:T,30_1:T,56_1:C,57_1:T,59_1:A,101_1:A,115:-,158_1:C,186_1:A,204:-,271_1:T,305:-,350_1:C,368_1:G,442_1:C,472_1:G,477_1:A}|SOURCE_1="Contig_1092402550638"(f665931a359e36cea0976db191ff60ff09cc816e) I want to retain... (15 Replies)
Discussion started by: Alyaa
15 Replies

10. Shell Programming and Scripting

Help with a deleting lines based on a pattern

I have a header-detail file that goes like this: SHP00288820131021110921 ORDER0156605920131021110921INMMMMFN DETAIL0004 4C2Z 10769 AAFC 0000009600000094 4C2Z 10769 AAFC 0000672107 OIL DETAIL0002 ER3Z 14300 E 0000001300000012 ER3Z 14300 E 0000672107 OIL... (3 Replies)
Discussion started by: rbaggio666
3 Replies
XmGetPixmapByDepth(library call)										  XmGetPixmapByDepth(library call)

NAME
XmGetPixmapByDepth -- A pixmap caching function that generates a pixmap, stores it in a pixmap cache, and returns the pixmap SYNOPSIS
#include <Xm/Xm.h> Pixmap XmGetPixmapByDepth( Screen *screen, char *image_name, Pixel foreground, Pixel background, int depth); DESCRIPTION
XmGetPixmapByDepth uses the parameter data to perform a lookup in the pixmap cache to see if a pixmap has already been generated that matches the data. If one is found, a reference count is incremented and the pixmap is returned. Applications should use XmDestroyPixmap when the pixmap is no longer needed. screen Specifies the display screen on which the pixmap is to be drawn image_name Specifies the name of the image to be used to generate the pixmap foreground Combines the image with the foreground color to create the pixmap if the image referenced is a bit-per-pixel image background Combines the image with the background color to create the pixmap if the image referenced is a bit-per-pixel image depth Specifies the depth of the pixmap If a matching pixmap is not found, image_name is used to perform a lookup in the image cache. If an image is found, it is used to generate the pixmap, which is then cached and returned. If an image is not found, image_name is used as a filename, and a search is made for an X10 or X11 bitmap file. If it is found, the file is read, converted into an image, and cached in the image cache. The image is then used to generate a pixmap, which is cached and returned. If image_name has a leading / (slash), it specifies a full pathname, and XmGetPixmapByDepth opens the file as specified. Otherwise, image_name specifies a filename. In this case, XmGetPixmapByDepth looks for the file along a search path specified by the XBMLANGPATH environment variable or by a default search path, which varies depending on whether or not the XAPPLRESDIR environment variable is set. The default search path contains a lot of directories. Therefore, XmGetPixmapByDepth will need a relatively long time to search through all these directories for pixmaps and bitmaps. Applications that use a lot of pixmaps and bitmaps will probably run more quickly if XBM- LANGPATH is set to a short list of directories. In addition to X bitmap files (XBM), Motif also supports XPM (X Pixmap) file formats, and, from version 2.3, JPEG and PNG image formats. (Note that support of JPEG and PNG image format is an optional feature of Motif, in order to check if current version supports PNG ang JPEG image formats the PNG_SUPPORT and JPEG_SUPPORT macros should be checked correspondingly.) The XBMLANGPATH specifies the path for both XBM, XPM, PNG and JPEG files. XPM files are described in more detail later in this reference page. The XBMLANGPATH environment variable specifies a search path for X bitmap files. It can contain the substitution field %B, where the image_name argument to XmGetPixmapByDepth is substituted for %B. It can also contain the substitution fields accepted by XtResolvePath- name. The substitution field %T is always mapped to bitmaps, and %S is always mapped to NULL. If XBMLANGPATH is not set, but the environment variable XAPPLRESDIR is set, the following pathnames are searched: o %B o $XAPPLRESDIR/%L/bitmaps/%N/%B o $XAPPLRESDIR/%l_%t/bitmaps/%N/%B o $XAPPLRESDIR/%l/bitmaps/%N/%B o $XAPPLRESDIR/bitmaps/%N/%B o $XAPPLRESDIR/%L/bitmaps/%B o $XAPPLRESDIR/%l_%t/bitmaps/%B o $XAPPLRESDIR/%l/bitmaps/%B o $XAPPLRESDIR/bitmaps/%B o $HOME/bitmaps/%B o $HOME/%B o /usr/lib/X11/%L/bitmaps/%N/%B o /usr/lib/X11/%l_%t/bitmaps/%N/%B o /usr/lib/X11/%l/bitmaps/%N/%B o /usr/lib/X11/bitmaps/%N/%B o /usr/lib/X11/%L/bitmaps/%B o /usr/lib/X11/%l_%t/bitmaps/%B o /usr/lib/X11/%l/bitmaps/%B o /usr/lib/X11/bitmaps/%B o /usr/include/X11/bitmaps/%B If neither XBMLANGPATH nor XAPPLRESDIR is set, the following pathnames are searched: o %B o $HOME/%L/bitmaps/%N/%B o $HOME/%l_%t/bitmaps/%N/%B o $HOME/%l/bitmaps/%N/%B o $HOME/bitmaps/%N/%B o $HOME/%L/bitmaps/%B o $HOME/%l_%t/bitmaps/%B o $HOME/%l/bitmaps/%B o $HOME/bitmaps/%B o $HOME/%B o /usr/lib/X11/%L/bitmaps/%N/%B o /usr/lib/X11/%l_%t/bitmaps/%N/%B o /usr/lib/X11/%l/bitmaps/%N/%B o /usr/lib/X11/bitmaps/%N/%B o /usr/lib/X11/%L/bitmaps/%B o /usr/lib/X11/%l_%t/bitmaps/%B o /usr/lib/X11/%l/bitmaps/%B o /usr/lib/X11/bitmaps/%B o /usr/include/X11/bitmaps/%B These paths are defaults that vendors may change. For example, a vendor may use different directories for /usr/lib/X11 and /usr/include/X11. The following substitutions are used in these paths: %B The image name, from the image_name argument %N The class name of the application %L The display's language string. This string is influenced by XtSetLanguageProc. The default string is determined by calling set- locale(LC_ALL, NULL). %l_%t The language and territory component of the display's language string %l The language component of the display's language string The contents of the file must conform to the rules for X11 bitmap files. In other words, Motif can read any X11 conformant bitmap file. The XPM file format is used for storing or getting back colored X pixmaps from files. The XPM library is provided as unsupported with Motif. To build applications without XPM, use the NO_XPM macro. The following shows both XBM and XPM files, respectively, for a plaid pat- tern. /* XBM file */ #define plaid_width 22 #define plaid_height 22 #define plaid_x_hot -1 #define plaid_y_hot -1 static char plaid_bits[] = { 0x75, 0xfd, 0x3f, 0xaa, 0xfa, 0x3e, 0x75, 0xfd, 0x3f, 0xaa, 0xfa, 0x3e, 0x75, 0xfd, 0x3f, 0xff, 0x57, 0x15, 0x75, 0xfd, 0x3f, 0xaa, 0xfa, 0x3e, 0x75, 0xfd, 0x3f, 0xaa, 0xfa, 0x3e, 0x75, 0xfd, 0x3f, 0x20, 0xa8, 0x2b, 0x20, 0x50, 0x15, 0x20, 0xa8, 0x2b, 0x20, 0x50, 0x15, 0x20, 0xa8, 0x2b, 0xff, 0xff, 0x3f, 0x20, 0xa8, 0x2b, 0x20, 0x50, 0x15, 0x20, 0xa8, 0x2b, 0x20, 0x50, 0x15, 0x20, 0xa8, 0x2b}; /* XPM file */ static char * plaid[] = { /* plaid pixmap * width height ncolors chars_per_pixel */ "22 22 4 2 ", /* colors */ " c red m white s light_color ", "Y c green m black s lines_in_mix ", "+ c yellow m white s lines_in_dark ", "x m black s dark_color ", /* pixels */ "x x x x x x x x x x x x + x x x x x ", " x x x x x x x x x x x x x x x x ", "x x x x x x x x x x x x + x x x x x ", " x x x x x x x x x x x x x x x x ", "x x x x x x x x x x x x + x x x x x ", "Y Y Y Y Y x Y Y Y Y Y + x + x + x + x + x + ", "x x x x x x x x x x x x + x x x x x ", " x x x x x x x x x x x x x x x x ", "x x x x x x x x x x x x + x x x x x ", " x x x x x x x x x x x x x x x x ", "x x x x x x x x x x x x + x x x x x ", " x x x x Y x x x ", " x x x Y x x ", " x x x x Y x x x ", "x x x x x x x x x x x x x x x x x x x x x x ", " x x x x Y x x x ", " x x x Y x x ", " x x x x Y x x x ", " x x x Y x x ", " x x x x Y x x x " }; RETURN
Returns a pixmap when successful; returns XmUNSPECIFIED_PIXMAP if the image corresponding to image_name cannot be found. RELATED
XmDestroyPixmap(3), XmInstallImage(3), and XmUninstallImage(3). XmGetPixmapByDepth(library call)
All times are GMT -4. The time now is 06:24 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy