Sponsored Content
Full Discussion: SED - output not desired
Top Forums Shell Programming and Scripting SED - output not desired Post 302478367 by rdcwayx on Tuesday 7th of December 2010 07:12:24 PM
Old 12-07-2010
Code:
echo '0x3f 0xfa ae 0xeA' |awk '{for (i=1;i<=NF;i++) if ($i~/^0x/) $i="0x" toupper(substr($i,3))}1'

 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Help me in getting the desired output

I wanted to put "|" this sign at starting and at end of every field but its not working with first field like Currently the out put is : abc | abc | abc | xyz | xyz | xyz | But I want the out put in this form: | abc | abc | abc | | xyz | xyz | xyz | plz help me. (2 Replies)
Discussion started by: akash
2 Replies

2. Shell Programming and Scripting

script not giving the desired output

Hi, I have a script in which an entry like this ..... FILENAME_B="PIC_${DATE}0732*.JPG" The script connects to an ATM and pull a pic file from it.The format for the file is like PIC_2008061400000001.JPG in the ATM. Means 1st 8 digit is the date(YYYYMMDD) field 2nd 8 digit means hrs... (2 Replies)
Discussion started by: Renjesh
2 Replies

3. Shell Programming and Scripting

how to get desired output after redirection

hi i am running script which contains the commmnds and i am redirecting the script output to a file. like ./script 1> result.txt 2>&1 the above redirection is not working for commands when run in background in a script. but the problem here result.txt containg output which is repeated.... (3 Replies)
Discussion started by: raji
3 Replies

4. Shell Programming and Scripting

Help, while loop and sed not producing desired output

Hello everyone, I need some assistance with what I thought would have been a very simple script. Purpose of Script: Script will parse through a source file and modify (search/replace) certain patterns and output to stdout or a file. Script will utilize a "control file" which will contain... (12 Replies)
Discussion started by: packetjockey
12 Replies

5. Shell Programming and Scripting

need to get the desired output

Below is the my cide which is working fine but I am not getting the output indesired format.there is some problem in alignment.Can someone help me to correct this? if ]; then summary=$( echo -e "Please review the log file of auto coloclean utility.\n"; echo -e... (2 Replies)
Discussion started by: anuragpgtgerman
2 Replies

6. Shell Programming and Scripting

How to grep the desired output and output to a file?

currently I have process from a raw file to this stage ALTER TABLE "EXCEL_ADMIN"."TC_TXN_VOID" ADD CONSTRAINT "PK_TC_TXN_VOID" PRIMARY KEY ("TC_TXN_IID") ALTER TABLE "EXCEL_ADMIN"."TC_TXN_AMT" ADD CONSTRAINT "PK_TC_TXN_AMT" PRIMARY KEY ("TC_TXN_AMT_IID") ALTER TABLE... (10 Replies)
Discussion started by: jediwannabe
10 Replies

7. Shell Programming and Scripting

Unable to obtain the desired output

Hi, I am unable to get beyond the exit function. The shell script is used to look for masked files and copy paste them to another location. Please refer to the code below for more information. Thanks Brinjit #!/usr/bin/ksh... (10 Replies)
Discussion started by: brinjit
10 Replies

8. Shell Programming and Scripting

Help!! needed to get the desired output

Am in need of your help to get the desired output. nameSECURITY.SERVICES.CONFIG:GETVALUEisPrefetchedNsAccessLast2013-09-13 10:50:13 MESTsAccessTotal1sRunningcHitLastnamePUBLIC.SERVER:INVOKEisPrefetchedNsAccessLast2013-09-17 15:02:05... (5 Replies)
Discussion started by: rocky2013
5 Replies

9. Shell Programming and Scripting

Output not coming as desired.

Hi guys. I have a file containing some hosts and their IPs. host host1 192.168.2.10 host host2 192.168.2.11 host host3 192.168.2.12 I am writing a script where I want to print these values in 1 line. My script looks like RUNTIME_NODE=`cat hosts.properties | grep host` for i in... (7 Replies)
Discussion started by: Junaid Subhani
7 Replies

10. UNIX for Beginners Questions & Answers

Grep -P does not capture the desired output

Hi, I'm trying to filter the following output to only display information about an alarm where the Status: corresponds to Set. -------------------------------------------------------- Description: hw_optics: RX POWER LANE-0 LOW ALARM Location: Optics0/0/0/21... (6 Replies)
Discussion started by: sand1234
6 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. The XBMLANGPATH specifies the path for both XBM and XPM 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 05:45 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy