Sponsored Content
Full Discussion: awk or grep
Top Forums Shell Programming and Scripting awk or grep Post 302102047 by grial on Monday 8th of January 2007 06:08:00 AM
Old 01-08-2007
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

[grep awk cut] > awk

Hi, I'm very new to scripting. grep $s $filename | awk '{print $2}' | cut -c 1-8 How can I optimize this using a single awk? I tried: awk '/$s/ {print $2}' $filename | cut -c 1-8 However didn't work, I think the awk is not recognizing $s and the verbal is something else. (6 Replies)
Discussion started by: firdousamir
6 Replies

2. UNIX for Dummies Questions & Answers

grep and awk

I have grep MHz psrinfo-v.out it gives The i386 processor operates at 3000 MHz, The i386 processor operates at 3000 MHz, The i386 processor operates at 3000 MHz, The i386 processor operates at 3000 MHz, how to get instead of these 4 lines: CPU speed: 3000 MHz i.e. CPU... (3 Replies)
Discussion started by: melanie_pfefer
3 Replies

3. Shell Programming and Scripting

MEM=`ps v $PPID| grep -i db2 | grep -v grep| awk '{ if ( $7 ~ " " ) { print 0 } else

Hi Guys, I need to set the value of $7 to zero in case $7 is NULL. I've tried the below command but doesn't work. Any ideas. thanks guys. MEM=`ps v $PPID| grep -i db2 | grep -v grep| awk '{ if ( $7 ~ " " ) { print 0 } else { print $7}}' ` Harby. (4 Replies)
Discussion started by: hariza
4 Replies

4. Shell Programming and Scripting

Is it better to grep and pipe to awk, or to seach with awk itself

This may just be a lack of experience talking, but I always assumed that when possible it was better to use a commands built in abilities rather than to pipe to a bunch of commands. I wrote a (very simple) script a while back that was meant to pull out a certain error code, and report back what... (4 Replies)
Discussion started by: DeCoTwc
4 Replies

5. Shell Programming and Scripting

Read content between xml tags with awk, grep, awk or what ever...

Hello, I trying to extract text that is surrounded by xml-tags. I tried this cat tst.xml | egrep "<SERVER>.*</SERVER>" |sed -e "s/<SERVER>\(.*\)<\/SERVER>/\1/"|tr "|" " " which works perfect, if the start-tag and the end-tag are in the same line, e.g.: <tag1>Hello Linux-Users</tag1> ... (5 Replies)
Discussion started by: Sebi0815
5 Replies

6. Shell Programming and Scripting

AWK/GREP: grep only lines starting with integer

I have an input file 12.4 1.72849432773174e+01 -7.74784188610632e+01 12.5 9.59432114416327e-01 -7.87018212757537e+01 15.6 5.20139995965960e-01 -5.61612429666624e+01 29.3 3.76696387248366e+00 -7.42896194101892e+01 32.1 1.86899877018077e+01 -7.56508762501408e+01 35 6.98857157014640e+00... (2 Replies)
Discussion started by: chrisjorg
2 Replies

7. Shell Programming and Scripting

awk / grep

how do I change this line to use the awk command RC19=`grep -c "Broken pipe" $FTP_OUT` Code tags please (5 Replies)
Discussion started by: mbmarciniak
5 Replies

8. UNIX for Dummies Questions & Answers

Piping grep into awk, read the next line using grep

Hi, I have a number of files containing the information below. """"" Fundallinfo 6.3950 14.9715 14.0482 """"" I would like to grep for Fundallinfo and use it to read the next line? I ideally would like to read the three numbers that follow in the next line and... (2 Replies)
Discussion started by: Paul Moghadam
2 Replies

9. Shell Programming and Scripting

sed and awk usage to grep a pattern 1 and with reference to this grep a pattern 2 and pattern 3

Hi , I have a file where i have modifed certain things compared to original file . The difference of the original file and modified file is as follows. # diff mir_lex.c.modified mir_lex.c.orig 3209c3209 < if(yy_current_buffer -> yy_is_our_buffer == 0) { --- >... (5 Replies)
Discussion started by: breezevinay
5 Replies

10. UNIX for Beginners Questions & Answers

Using awk instead of grep -f

Hi Guys. I am trying to count occurances of patterns(occurance can be anywhere in file2) from file1 in file2. file1 is god god pod rod file2 is iamgod iamgod podrod 123rod456 output should be god 2 god 2 pod 1 rod 2 I am not good at awk but i figured out this command.it doesnt... (7 Replies)
Discussion started by: ahfze
7 Replies
UCOM(9) 						   BSD Kernel Developer's Manual						   UCOM(9)

NAME
ucom -- interface for USB tty like devices DESCRIPTION
The ucom driver is a (relatively) easy way to make a USB device look like a tty(4). It basically takes two bulk pipes, input and output, and makes a tty out of them. This is useful for a number of device types, e.g., serial ports (see uftdi(4)), modems (see umodem(4)), and devices that traditionally look like a tty (see uvisor(4)). Communication between the real driver and the ucom driver is via the attachment arguments (when attached) and via the ucom_methods struct ATTACHMENT
struct ucom_attach_args { int portno; int bulkin; int bulkout; u_int ibufsize; u_int ibufsizepad; u_int obufsize; u_int obufsizepad; usbd_device_handle device; usbd_interface_handle iface; struct ucom_methods *methods; void *arg; }; int portno identifies the port if the devices should have more than one ucom attached. Use the value UCOM_UNK_PORTNO if there is only one port. int bulkin the number of the bulk input pipe. int bulkout the number of the bulk output pipe. u_int ibufsize the size of the read requests on the bulk in pipe. u_int ibufsizepad the size of the input buffer. This is usually the same as ibufsize. u_int obufsize the size of the write requests on the bulk out pipe. u_int ibufsizepad the size of the output buffer. This is usually the same as obufsize. usbd_device_handle device a handle to the device. usbd_interface_handle iface a handle to the interface that should be used. struct ucom_methods *methods a pointer to the methods that the ucom driver should use for further communication with the driver. void *arg the value that should be passed as first argument to each method. METHODS
The ucom_methods struct contains a number of function pointers used by the ucom driver at various stages. If the device is not interested in being called at a particular point it should just use a NULL pointer and the ucom driver will use a sensible default. struct ucom_methods { void (*ucom_get_status)(void *sc, int portno, u_char *lsr, u_char *msr); void (*ucom_set)(void *sc, int portno, int reg, int onoff); #define UCOM_SET_DTR 1 #define UCOM_SET_RTS 2 #define UCOM_SET_BREAK 3 int (*ucom_param)(void *sc, int portno, struct termios *); int (*ucom_ioctl)(void *sc, int portno, u_long cmd, void *data, int flag, struct lwp *l); int (*ucom_open)(void *sc, int portno); void (*ucom_close)(void *sc, int portno); void (*ucom_read)(void *sc, int portno, u_char **ptr, uint32_t *count); void (*ucom_write)(void *sc, int portno, u_char *to, u_char *from, uint32_t *count); }; void (*ucom_get_status)(void *sc, int portno, u_char *lsr, u_char *msr) get the status of port portno. The status consists of the line status, lsr, and the modem status msr. The contents of these two bytes is exactly as for a 16550 UART. void (*ucom_set)(void *sc, int portno, int reg, int onoff) Set (or unset) a particular feature of a port. int (*ucom_param)(void *sc, int portno, struct termios *t) Set the speed, number of data bit, stop bits, and parity of a port according to the termios(4) struct. int (*ucom_ioctl)(void *sc, int portno, u_long cmd, void *data, int flag, struct lwp *l) implements any non-standard ioctl(2) that a device needs. int (*ucom_open)(void *sc, int portno) called just before the ucom driver opens the bulk pipes for the port. void (*ucom_close)(void *sc, int portno) called just after the ucom driver closes the bulk pipes for the port. void (*ucom_read)(void *sc, int portno, u_char **ptr, uint32_t *count) if the data delivered on the bulk pipe is not just the raw input characters this routine needs to adjust ptr and count so that they tell where to find the given number of raw characters. void (*ucom_write)(void *sc, int portno, u_char *dst, u_char *src, uint32_t *count) if the data written to the bulk pipe is not just the raw characters then this routine needs to copy count raw characters from src into the buffer at dst and do the appropriate padding. The count should be updated to the new size. The buffer at src is at most ibufsize bytes and the buffer at dst is ibufsizepad bytes. Apart from these methods there is a function void ucom_status_change(struct ucom_softc *) which should be called by the driver whenever it notices a status change. SEE ALSO
tty(4), uftdi(4), umodem(4), usb(4), uvisor(4) HISTORY
This ucom interface first appeared in NetBSD 1.5. BSD
December 20, 2005 BSD
All times are GMT -4. The time now is 02:46 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy