MATERNOSTRA
Programmer
- May 4, 2009
- 1
Could some expert answer to this question?
I writed a text file on windows.
In this italian file some word wos with "'" , for example:
l'anima, un'altra an so on.
Then i worked this file on unix. I opened it with vi command, an i sow:
l<92>anima, un<92>altra and so on.
In order to match lines with <092> i made a command as:
#awk '
# $0 ~ /\92/ {print $0}' file
But <092> wos not found.
I tried also with octal /\134/ , but not found.
Does it exist a solution?
Tanks in advance
Gianni
I writed a text file on windows.
In this italian file some word wos with "'" , for example:
l'anima, un'altra an so on.
Then i worked this file on unix. I opened it with vi command, an i sow:
l<92>anima, un<92>altra and so on.
In order to match lines with <092> i made a command as:
#awk '
# $0 ~ /\92/ {print $0}' file
But <092> wos not found.
I tried also with octal /\134/ , but not found.
Does it exist a solution?
Tanks in advance
Gianni