- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: Conversion of french accents in Korn shell.
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-06-2005 07:26 AM
тАО10-06-2005 07:26 AM
Conversion of french accents in Korn shell.
Did anyone have a function or a script that convert the frecnh accents?
P.S:
I'm using HP UNIX script with awk to create a file.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-06-2005 03:59 PM
тАО10-06-2005 03:59 PM
Re: Conversion of french accents in Korn shell.
If you do want to do a character by character translation then tr will do it quite nicely but the real problem is that
ASCII 65 (Normally "A") will display "A" using 1 character set and something quite different using another character set. To the computer the byte is still simply 65dec or 41hex.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-06-2005 04:06 PM
тАО10-06-2005 04:06 PM
Re: Conversion of french accents in Korn shell.
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=754343
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-07-2005 01:44 AM
тАО10-07-2005 01:44 AM
Re: Conversion of french accents in Korn shell.
Just a clarification:
I'm reading a record from an execution of a Stored Procedure, then I'm creating a file in a KORN Shell script. I can't use the tr command because I'm just trying to convert one specific column of my file. Since Im' using AWK to format the file, I'm looking for a function using the sed command to do the conversion.
Did anyone have this function??
Thanks for your help.
Adnane
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-07-2005 02:01 AM
тАО10-07-2005 02:01 AM
Re: Conversion of french accents in Korn shell.
Thanks