Sponsored Content
Full Discussion: sed problem
Top Forums UNIX for Dummies Questions & Answers sed problem Post 93698 by gauri_agr on Wednesday 21st of December 2005 12:00:40 PM
Old 12-21-2005
Hi Vino,

I am unable replace \ with \\ . This is again because of the special characters.

Here is the example for the lines i am finding it difficult:

*%EFILocal [invisible_yes:\x82\xcd\x82\xa2]^M
*%EFILocal [invisible_no:\x82\xa2\x82\xa2\x82\xa6]^M
^M
*%EFILocal [has disk raster?_yes:\x82\xcd\x82\xa2]^M
*%EFILocal [has disk raster?_no:\x82\xa2\x82\xa2\x82\xa6]^M
^M
static_attrs.ppd.japanes

i want to replace \x82 with \\x82. But nothing is working.

Could you please help me.

Thanks & Regards
Gauri
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Sed Problem

I AM TRYING TO APPEND THE HOSTNAME OF A UNIX SERVER I WORK WITH SO I COULD DO A LOADING INTO A DATABASE. THE COMMAND I AM USING IS df -k | sed 's/^/dataserver /' What I intend to do is append the hostname dynamically by using the hostname command instead of having to manually enter... (1 Reply)
Discussion started by: Chelsea
1 Replies

2. UNIX for Dummies Questions & Answers

Problem with sed

Hi , echo "07/05/2008" | sed 's/\(..\)\/\(..\)\/\(..\)/\3\2\1/' Output :: 20050708 Expected output is 20080507 Iam not getting the bug in this. Thanks for the help -- penchal (4 Replies)
Discussion started by: penchal_boddu
4 Replies

3. Shell Programming and Scripting

Problem with SED

Hi, I have to use SED to remove the prefix "219-" from a text file containing phone numbers and I have to remove the ":" as well. I write the following code but it does not seem to work. Can someone help me please? mohit@mohit-desktop:~$ sed -n s/219-/" "/p corp_phones_bak > noprefix1... (2 Replies)
Discussion started by: mojoman
2 Replies

4. Shell Programming and Scripting

Problem in sed.

Hi All! I am trying to use shell variables in a sed statement, but facing an error.I used the double quotes instead if single quotes in the sed statement. # sed -i -e "s/password/$decoded/g;" $CATALINA_HOME/conf/server.xml sed: -e expression #1, char 11: unterminated `s' command # ... (5 Replies)
Discussion started by: nua7
5 Replies

5. Shell Programming and Scripting

Sed Problem

I have a file which contain many lines see below. "/var/www/abc>" I want to remove Both of these values "" and > (5 Replies)
Discussion started by: aliahsan81
5 Replies

6. Shell Programming and Scripting

SED - Problem

I have a file with a lot of numbers in it and I need to clean it up and make it look nice and proper. I found this little gem of a one-liner and basically understand what it is doing but I would like to further understand what each part of the command is doing. Being a newb, I am just trying to... (2 Replies)
Discussion started by: genedc1
2 Replies

7. Programming

sed problem

Hi all In input file I have records like this: 0,1,0,87,0,0,"6,87","170,03",0,"43,5",0,0,0,0,"6,87","126,53"and in output file I need that these records transforms in : 0 1 0 87 0 0 6,87 170,03 0 43,5 0 0 0 0 6,87 126,53 Could you help me in this case? Please (3 Replies)
Discussion started by: shizik
3 Replies

8. Shell Programming and Scripting

sed problem

Hi i am stuck with a very silly problem :mad: below is my code echo 201010_1212_121.xml i need to replace xml with csv so i did echo 201010_1212_121.xml | sed 's/.*\.xml/.*\.csv/' echo 201010_1212_121.xml | sed 's/*.xml/*.csv/' echo 201010_1212_121.xml |... (4 Replies)
Discussion started by: aishsimplesweet
4 Replies

9. UNIX for Dummies Questions & Answers

sed problem

Hi Folks, I want to replace these numbers with words as the following: $echo 1 11 223 I want to replace each number with it name (e.g. "1" replaced with "one", etc.) just to determine how sed works in such case. Thanks in advance:). Leo (8 Replies)
Discussion started by: leo_ultra_leo
8 Replies

10. UNIX for Dummies Questions & Answers

sed Or Grep Problem OR Terminal Problem?

I don't know if you guys get this problem sometimes at Terminal but I had been having this problem since yesterday :( Maybe I overdid the Terminal. Even the codes that used to work doesn't work anymore. Here is what 's happening: * I wanted to remove lines containing digits so I used this... (25 Replies)
Discussion started by: Nexeu
25 Replies
QwtRasterData(3)						 Qwt User's Guide						  QwtRasterData(3)

NAME
QwtRasterData - QwtRasterData defines an interface to any type of raster data. SYNOPSIS
#include <qwt_raster_data.h> Inherited by QwtPlotSpectrogram::PrivateData::DummyData. Public Types enum ConrecAttribute { IgnoreAllVerticesOnLevel = 1, IgnoreOutOfRange = 2 } typedef QMap< double, QPolygonF > ContourLines Public Member Functions QwtDoubleRect boundingRect () const virtual ContourLines contourLines (const QwtDoubleRect &rect, const QSize &raster, const QList< double > &levels, int flags) const virtual QwtRasterData * copy () const =0 virtual void discardRaster () virtual void initRaster (const QwtDoubleRect &, const QSize &raster) QwtRasterData () QwtRasterData (const QwtDoubleRect &) virtual QwtDoubleInterval range () const =0 virtual QSize rasterHint (const QwtDoubleRect &) const virtual void setBoundingRect (const QwtDoubleRect &) virtual double value (double x, double y) const =0 virtual ~QwtRasterData () Detailed Description QwtRasterData defines an interface to any type of raster data. QwtRasterData is an abstract interface, that is used by QwtPlotRasterItem to find the values at the pixels of its raster. Often a raster item is used to display values from a matrix. Then the derived raster data class needs to implement some sort of resampling, that maps the raster of the matrix into the requested raster of the raster item ( depending on resolution and scales of the canvas ). Member Enumeration Documentation enum QwtRasterData::ConrecAttribute Attribute to modify the contour algorithm. Constructor &; Destructor Documentation QwtRasterData::QwtRasterData () Constructor. QwtRasterData::QwtRasterData (const QwtDoubleRect &boundingRect) Constructor Parameters: boundingRect Bounding rectangle See also: setBoundingRect() QwtRasterData::~QwtRasterData () [virtual] Destructor. Member Function Documentation QwtDoubleRect QwtRasterData::boundingRect () const Returns: Bounding rectangle See also: boundingRect() QwtRasterData::ContourLines QwtRasterData::contourLines (const QwtDoubleRect &rect, const QSize &raster, const QList< double > &levels, intflags) const [virtual] Calculate contour lines An adaption of CONREC, a simple contouring algorithm. http://local.wasp.uwa.edu.au/~pbourke/papers/conrec/ virtual QwtRasterData* QwtRasterData::copy () const [pure virtual] Clone the data. void QwtRasterData::discardRaster () [virtual] Discard a raster. After the composition of an image QwtPlotSpectrogram calls discardRaster(). The default implementation does nothing, but if data has been loaded in initRaster(), it could deleted now. See also: initRaster(), value() void QwtRasterData::initRaster (const QwtDoubleRect &, const QSize &raster) [virtual] Initialize a raster. Before the composition of an image QwtPlotSpectrogram calls initRaster, announcing the area and its resolution that will be requested. The default implementation does nothing, but for data sets that are stored in files, it might be good idea to reimplement initRaster, where the data is resampled and loaded into memory. Parameters: rect Area of the raster raster Number of horizontal and vertical pixels See also: initRaster(), value() virtual QwtDoubleInterval QwtRasterData::range () const [pure virtual] Returns: the range of the values QSize QwtRasterData::rasterHint (const QwtDoubleRect &) const [virtual] Find the raster of the data for an area. The resolution is the number of horizontal and vertical pixels that the data can return for an area. An invalid resolution indicates that the data can return values for any detail level. The resolution will limit the size of the image that is rendered from the data. F.e. this might be important when printing a spectrogram to a A0 printer with 600 dpi. The default implementation returns an invalid resolution (size) Parameters: rect In most implementations the resolution of the data doesn't depend on the requested rectangle. Returns: Resolution, as number of horizontal and vertical pixels void QwtRasterData::setBoundingRect (const QwtDoubleRect &boundingRect) [virtual] Set the bounding rect ( == area, un plot coordinates ) Parameters: boundingRect Bounding rectangle See also: boundingRect() virtual double QwtRasterData::value (doublex, doubley) const [pure virtual] Returns: the value at a raster position Parameters: x X value in plot coordinates y Y value in plot coordinates Author Generated automatically by Doxygen for Qwt User's Guide from the source code. Version 5.2.2 Mon Aug 1 2011 QwtRasterData(3)
All times are GMT -4. The time now is 03:35 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy