Sponsored Content
Top Forums Shell Programming and Scripting Grep not working - special characters?? Post 302220295 by gugs on Thursday 31st of July 2008 10:39:24 AM
Old 07-31-2008
Thanks for that it works. However what is the best way for?

The sed command has helped in extracting the data I want, however, I lose some of formating i.e. spaces in words. It appears that is what is causing the problem. If I convert the data using sed s'/[^a-zA-Z0-9]//g' it gets the data I want. If I convert using s'/[^a-zA-Z0-9<>:]//g' it too gets the data I want. However when I convert the data using s'/[^a-zA-Z0-9<>: ]//g' that's when I hit the problem. So is there a way of subsituting the space with some character, extarct the data I am intrested in and then converting the character back to space?
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Grep with Special Characters

I need to sort a file, the sort is not a alphabetical sort, it's based on a predefined order which is read from a file called fSortOrder. The format of the fSortOrder file is : STARTPATH" .... .... The file that needs to be sorted is called tmpUnsorted and contains data in the format : ... (6 Replies)
Discussion started by: Vashj
6 Replies

2. UNIX Desktop Questions & Answers

grep with special characters

Hi there I need to grep for a detail from a file. The pattern to search for involves escape sequences in it. This causes for the problem. grep "P\_SOME\_STRING\_SEARCH" filename Note, I have line like below in the file and expect it to grep. select * from my_system_param ... (3 Replies)
Discussion started by: guruparan18
3 Replies

3. UNIX for Dummies Questions & Answers

Using GREP for special characters

Hi folks I am issuing the following command: grep "" * Looking for the characters \/:*?"<>|#+%& within all files in a directory, but the command fails being unhappy with pipe: ksh: 0403-057 Syntax error: `|' is not expected. How do I force the command to take the pipe | ? I guess... (2 Replies)
Discussion started by: daveaasmith
2 Replies

4. UNIX for Dummies Questions & Answers

locate special characters and digits using grep

Hello, i have a file called test hello1 "how" are you4 good"bye" good7bye i am trying to print all lines from test that either end with a digit or contain a double quote character anywhere on the line. i did grep -n '$' test and was able to print lines ending with digits. i also did... (2 Replies)
Discussion started by: hobiwhenuknowme
2 Replies

5. Shell Programming and Scripting

SED equivalent for grep -w -f with pattern having special characters

I'm looking for SED equivalent for grep -w -f. All I want is to search a list of patterns from a file. Also If the pattern doesn't match I do not want "null returned", rather I would prefer some text as place holder say "BLANK LINE" as I intend to process the output file based on line number. ... (1 Reply)
Discussion started by: novice_man
1 Replies

6. Shell Programming and Scripting

Grep with special Characters

Need Help For GREP I have a file say g1.txt and content of file is below REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v NoDrives /t REG_DWORD /d 4 /f , REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v NoClose /t REG_DWORD /d 1 /f ,... (4 Replies)
Discussion started by: jalpasoni
4 Replies

7. Shell Programming and Scripting

Is there anyway to grep any special characters from a file ?

Is there any command or shell script to grep any special character from a file ? I have a huge file containing millions of user names; the requirement is to find names containing special characters. #!/bin/bash for i in `cat username.txt` do #COMMAND to grep special character done ... (3 Replies)
Discussion started by: poga
3 Replies

8. Shell Programming and Scripting

grep lines having special characters

Hi, I have a file which has numerous lines and some of the lines having special characters in it. i want to grep the lines which are having special characters. say, one line looks like - %*()$#@"", | acbd antoher line looks like ***##^%! | efcg so these kind of lines are present... (5 Replies)
Discussion started by: rbalaj16
5 Replies

9. Shell Programming and Scripting

Working with lines or variables that have spaces or special characters

Example: while read line do stat -c %G $line done < somefile.txtThe problem is that inside somefile.txt lines can have any symbol allowed as file name, like (). Even with spaces, it splits the words. somefile.txt:dira/my first jump.avi dirb/surf video (1080p).mkv (2 Replies)
Discussion started by: Tribe
2 Replies

10. Shell Programming and Scripting

Grep exact match without period or other special characters

If I have a file like the following abc.1 abc abc_1 abc..1 abc*1 abc@1 abc def ghr def...... ddef 5466 def ed def** 123445 I`m trying to find exact words from the list abc def (4 Replies)
Discussion started by: ritakadm
4 Replies
SoByteStream(3IV)()													       SoByteStream(3IV)()

NAME
SoByteStream -- converts scene graph objects to character byte streams INHERITS FROM
SoByteStream SYNOPSIS
#include <Inventor/misc/SoByteStream.h> Methods from class SoByteStream: SoByteStream() ~SoByteStream() void convert(SoNode *node, SbBool binaryFormat = TRUE) void convert(SoPath *path, SbBool binaryFormat = TRUE) void convert(SoPathList *pathList, SbBool binaryFormat = TRUE) void * getData() uint32_t getNumBytes() static SoPathList * unconvert(SoByteStream *byteStream) static SoPathList * unconvert(void *data, uint32_t numBytes) DESCRIPTION
This class creates a byte stream representation of a scene graph, using an SoWriteAction to write path lists to an in-memory buffer. Byte streams are commonly used to transfer data in copy and paste operations. (The SoXtClipboard class passes SoByteStream data during copy and paste.) METHODS
SoByteStream() ~SoByteStream() Constructor and destructor. void convert(SoNode *node, SbBool binaryFormat = TRUE) void convert(SoPath *path, SbBool binaryFormat = TRUE) void convert(SoPathList *pathList, SbBool binaryFormat = TRUE) These convert the passed scene graph object(s) into a byte stream. The caller may specify whether the byte stream is written in binary (TRUE) or ASCII (FALSE) format, and can pass the object(s) by node, path, or pathList. void * getData() uint32_t getNumBytes() These return the data and number of bytes from the last convert() operation. This byte stream format is well suited to data transfers, like copy and paste. static SoPathList * unconvert(SoByteStream *byteStream) static SoPathList * unconvert(void *data, uint32_t numBytes) These take byte stream data and unconvert it back to scene graph objects. The objects are returned in a path list. SEE ALSO
SoXtClipboard SoByteStream(3IV)()
All times are GMT -4. The time now is 06:55 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy