german characters (e.g. ä, ß, Ö)


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers german characters (e.g. ä, ß, Ö)
# 1  
Old 12-08-2006
german characters (e.g. ä, ß, Ö)

Hi Guys,

I am working with a system whereby messages are being transferred into a UNIX box (which contain these german characters) and the message needs to be read by a script. But the box doesnt understand these german umlaut characters e.g. Ö , ä. What happens is that they get changed by the unix server (before being passed to the script) to something like ä = %D

My questions is this - how can i get my unix box to understand these characters and allow them to be passed through without being changed?

thanks

Ocelot
 
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Outputting characters after a given string and reporting the characters in the row below --sed

I have this fastq file: @M04961:22:000000000-B5VGJ:1:1101:9280:7106 1:N:0:86 GGGGGGGGGGGGCATGAAAACATACAAACCGTCTTTCCAGAAATTGTTCCAAGTATCGGCAACAGCTTTATCAATACCATGAAAAATATCAACCACACCA +test-1 GGGGGGGGGGGGGGGGGCCGGGGGFF,EDFFGEDFG,@DGGCGGEGGG7DCGGGF68CGFFFGGGG@CGDGFFDFEFEFF:30CGAFFDFEFF8CAF;;8... (10 Replies)
Discussion started by: Xterra
10 Replies

2. Shell Programming and Scripting

sed replacing specific characters and control characters by escaping

sed -e "s// /g" old.txt > new.txt While I do know some control characters need to be escaped, can normal characters also be escaped and still work the same way? Basically I do not know all control characters that have a special meaning, for example, ?, ., % have a meaning and have to be escaped... (11 Replies)
Discussion started by: ijustneeda
11 Replies

3. Solaris

File with German Umlaut

Hi I have a txt file i saved in windows with german umlauts When listing the file in Solaris 10 I can't see the umlauts I tried to export LANG to de, at and anything else in /usr/lib/locale but it didn't help Can anybody help out please? Thanks in advance (5 Replies)
Discussion started by: moutaye
5 Replies

4. Virtualization and Cloud Computing

NX Nomachine - German Keyboard does not work

Hello, I´m trying to get NX Nomachine working. On the server I use NX Free Edition for Solaris (running on Sparc Solaris 10 update 5). The Client is NX Client for Windows running on XP Professional. So far so good. Nearly everything works fine. The only problem is, that I always have the US... (1 Reply)
Discussion started by: bluemax
1 Replies
Login or Register to Ask a Question
ALTER 
COLLATION(7) PostgreSQL 9.2.7 Documentation ALTER COLLATION(7) NAME
ALTER_COLLATION - change the definition of a collation SYNOPSIS
ALTER COLLATION name RENAME TO new_name ALTER COLLATION name OWNER TO new_owner ALTER COLLATION name SET SCHEMA new_schema DESCRIPTION
ALTER COLLATION changes the definition of a collation. You must own the collation to use ALTER COLLATION. To alter the owner, you must also be a direct or indirect member of the new owning role, and that role must have CREATE privilege on the collation's schema. (These restrictions enforce that altering the owner doesn't do anything you couldn't do by dropping and recreating the collation. However, a superuser can alter ownership of any collation anyway.) PARAMETERS
name The name (optionally schema-qualified) of an existing collation. new_name The new name of the collation. new_owner The new owner of the collation. new_schema The new schema for the collation. EXAMPLES
To rename the collation de_DE to german: ALTER COLLATION "de_DE" RENAME TO german; To change the owner of the collation en_US to joe: ALTER COLLATION "en_US" OWNER TO joe; COMPATIBILITY
There is no ALTER COLLATION statement in the SQL standard. SEE ALSO
CREATE COLLATION (CREATE_COLLATION(7)), DROP COLLATION (DROP_COLLATION(7)) PostgreSQL 9.2.7 2014-02-17 ALTER COLLATION(7)