Grep character æ


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Grep character æ
# 1  
Old 10-16-2013
Grep character æ

Hello,

Im trying check if character "æ" (alt+145) is included or not in some files. To do that I have written a scrip with vi that basically is a loop of all these compressed files and something like:

Code:
zcat $file | grep æ >> logtocheck.out ;

The problem is that æ is translated to something like "\303\254" (not sure about the exact numbers). Ive been trying some other ways to write this character but didnt succeed. I execute it with ksh.

Thank you in advance.

Last edited by Don Cragun; 10-16-2013 at 08:36 PM.. Reason: Add CODE tags.
# 2  
Old 10-16-2013
What you have shown us will copy lines that contain the character æ from the file named by the expansion of $file (after uncompressing that file) to the end of a file named logtocheck.out.

If you have this statement in a loop handling all of your compressed files, when you get done you won't know which files contained the matching lines.

If you would give us an explicit statement of what output you're trying to produce, we might be able to help you achieve that goal.
# 3  
Old 10-16-2013
Hi Don,

I have some echo with the file name inside the loop redirected to the file logtocheck.out too, so I could follow the results. Basically my problem is how to grep character æ.
# 4  
Old 10-16-2013
Assuming that the data in your compressed files was encoded using the same codeset that is underlying the current locale in which you're running this script and was in use when you wrote your script, the grep command you have should be fine.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to grep only some part of character?

Hi, I have log : # cat log $ cat 4 2014092014 2014102014 2014112023 2014123014 2014010100 2014010101 2014010102 2014010103 2014010104 2014020123 2014020115 2014020116 (3 Replies)
Discussion started by: justbow
3 Replies

2. Shell Programming and Scripting

Grep -F for special character

a='CASH$$A' /usr/xpg4/bin/grep -F "$a" *.txt It is not able to grep CASH$$A string as it contains special character $$. I also tried with /usr/xpg4/bin/grep -F '$a' *.txt but still not working. I have to assign CASH$$A to a variable and serach that variable..i dont want to search the... (8 Replies)
Discussion started by: millan
8 Replies

3. UNIX for Dummies Questions & Answers

How to grep until a certain character?

Hi, so I have a file containing many repetitions of the pattern block displayed below: >NM_13489075 ACGUGCUAGCUUAGCGA AGCUAGCUGAUCGAUGC ACGUAGCUAGCUGAUCG GAUCGA >NM_13489023 ACGUGCUAGCUUAGCGA AGCUAGCUGAUCGAUGC ACGUAGCUAGCUGAUCG GAAGUC I was wondering how to grep, for example, a... (5 Replies)
Discussion started by: ShiGua
5 Replies

4. UNIX for Dummies Questions & Answers

Grep to return lines not containing a character

Hello , this is my first topic cause I need your little help:( I got .txt file, and I want to find lines without letter 'a', so im writing: grep "" list.txt (list.txt is the file of course) and i have no idea why it's not working because it shows lines with a. (1 Reply)
Discussion started by: bbqtoss
1 Replies

5. Shell Programming and Scripting

grep ^ as a character

I have a pwd file with a number of errors like: ^grep ^ I get the whole file since it thinks it's new line. Should I \ to escape this? (4 Replies)
Discussion started by: dba_frog
4 Replies

6. UNIX for Advanced & Expert Users

Grep character classes '\w' '\d'

I am learning regex fundamentals on my own and when I try to use \w for characters (i.e. ), or \d for digits () it doesnt work even though I see in greps man page that \w should be the same as ]... ] and those types of syntactic character classes do work for me, its just the shorthand \w \W and... (4 Replies)
Discussion started by: glev2005
4 Replies

7. UNIX for Advanced & Expert Users

grep in special character

All, I am trying to grep "-----" from a test when i use this i am getting the below error. What is the reason for this ?????... How can i over come this ##) echo "----------------- test_sys_job -----------------" | grep "-----------------" grep: illegal option -- - grep: illegal... (6 Replies)
Discussion started by: arunkumar_mca
6 Replies

8. UNIX for Dummies Questions & Answers

grep with wilcard character(*)

Hello people, I am trying to grep out a certain pattern from some files. The situation is like this: constantstring1<random data>constantstring2 I am using the following command (which clearly is not working!!!): datestring=<some date in YYYYMMDD format> searchstring=$datestring"*_xyz" grep... (2 Replies)
Discussion started by: Rajat
2 Replies

9. UNIX for Dummies Questions & Answers

Grep for X character on a word

How can I grep for a certain letter that only shows on the 3rd letter or character. ex: ASGHDY SHTYRD SDTYRD IGIKGD I only want the TY part of the 3rd character so output would only be SHTYRD and DDTYRD - I only want the TY on the 3rd character. THANKS (5 Replies)
Discussion started by: jjoves
5 Replies

10. UNIX for Dummies Questions & Answers

GREP a string with NULL Character

Does anyone know how to use grep/egrep to find a string that contains a null character? i.e.: the string looks like this: null0001nullN well I want to be able to : grep '0001N' is there a wildcard character or something that I can put in the grep to include the nulls? (3 Replies)
Discussion started by: weerich
3 Replies
Login or Register to Ask a Question