Sponsored Content
Top Forums Shell Programming and Scripting I can't figure this out? Quick help with sed Post 302228849 by Perderabo on Monday 25th of August 2008 04:00:46 PM
Old 08-25-2008
Code:
$ cat data
Wind: from the WNW (290 degrees) at 6 MPH (5 KT)
Pressure (altimeter): 29.82 in. Hg (1009 hPa)
Temperature: 80.1 F (26.7 C)
Dew Point: 72.0 F (22.2 C)
Relative Humidity: 76%
$ cat data | sed 's/([^)]*)//g'
Wind: from the WNW  at 6 MPH
Pressure : 29.82 in. Hg
Temperature: 80.1 F
Dew Point: 72.0 F
Relative Humidity: 76%
$

 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

a quick SED question

I have a line EXTDIR=`echo $i | sed 's/\-tar.gz//'` which looks for files ending in -tar.gz, i would like to increase the functionality so that it looks for .tar.gz files as well as -tar.gz. Do i put the - in square brackets with a dot ? like this EXTDIR=`echo $i | sed 's/\tar.gz//'` ... (1 Reply)
Discussion started by: hcclnoodles
1 Replies

2. Shell Programming and Scripting

quick sed question

hey, Im just wondering is there away to get sed to read from a variable eg it doesn't seem to work, i really need to be able to recursively change the same data set... (2 Replies)
Discussion started by: vbm
2 Replies

3. Shell Programming and Scripting

quick sed help

what's the code for delete everything before sssss asdf become: (3 Replies)
Discussion started by: katrvu
3 Replies

4. Shell Programming and Scripting

Quick Question on sed command in shell script

Hello, I have the following line in one of my shell scripts. It works fine when the search string($SERACH_STR) exists in the logfile($ALERTLOG) but if the search string does not exist this line errors out at run time. Is there a way to make this line return 0 if it is not able to find the... (4 Replies)
Discussion started by: luft
4 Replies

5. Shell Programming and Scripting

Quick Sed Question

Just want to know why when I do the following in sed, the required is not extracted. echo "ab01cde234" | sed 's/*$//' result: ab01cde (Which is correct) echo "ab01cde234" |sed 's/.*\(*\)$/\1/' result: blank (was expecting 234) or echo "ab01cde234" |sed 's/.*\(\)*$/\1/' result: blank... (6 Replies)
Discussion started by: eo29
6 Replies

6. Shell Programming and Scripting

Quick sed/awk question

Hi fellow linux-ers, I have a quick question for you. I have the following text, which I would like to modify: 10 121E(121) 16 Jan 34S 132E 24 Feb 42 176E(176) 18 Sep 21S 164E 25 May 15 171W(-171) 09 Jul How can I do the following 2 modifications using sed and/or awk? 1. in 1st column,... (1 Reply)
Discussion started by: lucshi09
1 Replies

7. Shell Programming and Scripting

README: Factorial quick chart with sed & bc:

Hi all, While doing some checks I found a kind of interesting arithmetic factorial chart with sed, sharing this may be simple but thought to share, # n=20;for i in `seq $n`;do printf "`seq $i|xargs|sed 's/ /*/g'`= ";echo "`seq $i|xargs|sed 's/ /*/g'`"| bc;done 1= 1 1*2= 2 1*2*3= 6... (6 Replies)
Discussion started by: rveri
6 Replies

8. Shell Programming and Scripting

Help with change significant figure to normal figure command

Hi, Below is my input file: Long list of significant figure 1.757E-4 7.51E-3 5.634E-5 . . . Desired output file: 0.0001757 0.00751 0.00005634 . . . (10 Replies)
Discussion started by: perl_beginner
10 Replies

9. Shell Programming and Scripting

Need Quick help on Understanding sed Regex

Hi Guys, Could you please kindly explain what exactly the below SED command will do ? I am quite confused and i assumed that, sed 's/*$/ /' 1. It will remove tab and extra spaces .. with single space. The issue is if it is removing tab then it should be Î right .. please assist.... (3 Replies)
Discussion started by: Nandy
3 Replies
DIGITEMP(1)						      General Commands Manual						       DIGITEMP(1)

NAME
digitemp - program to read from temperature sensors. SYNOPSIS
digitemp [options] DESCRIPTION
DigiTemp uses the Dallas 1-wire bus to read temperatures from digital sensors attached to a serial port adapter. It handles initializing the bus, searching for attached devices, reading devices and custom log strings. It suports the following temperature devices: DS1820, DS18S20, DS18B20, DS1822 It also handles the DS2406 1-wire hub switches, and DS2422 and DS2423 counters. DigiTemp uses either the DS9097 passive serial port adapter, or the DS2480B based DS9097U adapter (recommended). OPTIONS
At least 1 action must be given, along with some optional arguments. Actions are one (and only on) of the -w -t -a -w options -h, -? Show summary of options. -v Show verbose output. -i Initialize .digitemprc file, search the bus for all supported devices. -w Walk the full device tree and display the serial number and type of all devices detected on the bus. -s /dev/ttyS0 Set serial port to use. Make sure you have permission to access this port. -l /var/log/temperature Send output to logfile, the output format is defined by the .B -o command -c digitemp.conf Set digitemp configuration file. The default is .digitemprc in the current directory. -r 1000 Read delay in ms. This sets the amount of time to wait between sending the temperature conversion command and reading the result. The DS18S20 takes about 750mS to do the temperature conversion. Default is 1000mS (1 sec). -t # Read sensor number #, the # depends on the order of the sensors in the .digitemprc file. -q Quiet output, no copyright banner. -a Read all sensors. -A Treat DS2438 as A/D converter, output raw voltages -d 5 Delay between samples (in seconds). -n 50 Number of times to repeat the command. -O"counter format string" See Counter Format below. -o [1..3] ["output format string"] See Temperature Format below. -H"Humidity format string" See Humidity Format below. Temperature Format The temperature format can be either a numeric value, or a string. The numeric values select pre-configured output formats: 1 = One line per sensor, time, C, F (default) 2 = One line per sample, elapsed time, temperature in C 3 = Same as #2, except temperature is in F #2 and #3 have the data separated by tabs, suitable for import into a spreadsheet or other graphing software. The format string uses strftime tokens plus 5 special ones for DigiTemp: %s for sensor # %C for centigrade %F for fahrenheit %R to output the hex serial number %N for seconds since Epoch. The case of the token is important! The default format string is: "%b %d %H:%M:%S Sensor %s C: %.2C F: %.2F" which gives you an output of: May 24 21:25:43 Sensor 0 C: 23.66 F: 74.59 The DS2438 sensor can be used for a variety of things. It includes a temperature sensor and A/D converter. DigiTemp defaults to using it as a humidity sensor. The raw voltages can be displayed by passing the -A argument When the -o2 or -o3 log options are used the attached DS2438's temperatures will be output without the humidity. Counter Format String The counter format string is similar, adding these tokens: %n is the counter #, which depends on its position in the .digitemprc file %C is the count in decimal. Humidity Format String The Humidity format string is the same as the temperature format string with the addition of this format specifier: %h is the humidity in 0-100% AUTHOR
This manual page was written by Jesus Roncero <jesus@roncero.org>, for the Debian project (but may be used by others). Modifications by Brian C. Lane <bcl@brianlane.com> UPDATES
DigiTemp updates can be found on the http://www.digitemp.com website. June 2005 DIGITEMP(1)
All times are GMT -4. The time now is 03:43 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy