Sponsored Content
Top Forums Shell Programming and Scripting Characterset conversion problem using iconv command Post 302637113 by sivakumarl on Wednesday 9th of May 2012 02:18:31 AM
Old 05-09-2012
It is AIX 1

---------- Post updated at 10:08 AM ---------- Previous update was at 10:04 AM ----------

I have listed, i am not able to find IBM-284 character set ,Could you please let me know the process to install this character set and from where i can download this package ?

Thanks,
Siva

---------- Post updated 05-09-12 at 01:18 AM ---------- Previous update was 05-08-12 at 10:08 AM ----------

Hi Corona,

I have found the IBM-284 characterset while listing the character sets using iconv -l. Still i am getting the same error. Could you please let me know what is the root cause about this issue.

Thanks in Advance,
Siva.
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Conversion Problem

hi, i am reading a string values from a file.the values are 2000 20000 300 10 5000 now retrieving each value one by one and printing if they are greater than 1000. i use this statement for the same (in perl script) if ($_ gt 1000){ print $_ } but its now prininting all... (3 Replies)
Discussion started by: vivekshankar
3 Replies

2. Shell Programming and Scripting

decimal value for particular characterset

Hi, I need some help to get decimal value of some particluar character set for e.g. in windows-1251 characterset ж --> 230 Please help and suggest way to achive same. (7 Replies)
Discussion started by: peeyushgehlot
7 Replies

3. Shell Programming and Scripting

Help with iconv command

Hi , I am using iconv command to convert a file in UTF-16 format to UTF-8 format. This command will work for few files but for some showing an error as bad input character. But if i copy the contents of the file for which it is showing "bad input character" to a new file and perform the... (0 Replies)
Discussion started by: Shruthi8818
0 Replies

4. UNIX for Dummies Questions & Answers

Help with iconv command

Hi , I am using iconv command to convert a file in UTF-16 format to UTF-8 format. This command will work for few files but for some showing an error as bad input character. But if i copy the contents of the file for which it is showing "bad input character" to a new file and perform the... (2 Replies)
Discussion started by: Shruthi8818
2 Replies

5. AIX

Installing Converter files for iconv conversion

Hi Friends, I need to install two converter packages UTF-8_IBM-284 and UTF-8_IBM-500 in the location /usr/lib/nls/loc/iconv/* or /usr/lib/nls/loc/iconvTable/* . Could you please let me know how to get this converter files. Thanks in Advance, Siva. (1 Reply)
Discussion started by: sivakumarl
1 Replies

6. Shell Programming and Scripting

Help with command iconv

I need to convert a utf16 file to utf8. When i use the iconv command to do so it gives an error saying invalid function. When I ran the iconv -l function it did not list the utf16 and utf8 as part of its internal table. Is there anyway I can add these encodings in the library? Is there any other... (3 Replies)
Discussion started by: gaun
3 Replies

7. Shell Programming and Scripting

File conversion problem

To convert file epcdic to ascill format,i am using below code.Getting some junk characters in output file.not sure what the issue is.Please correct if below command is wrong. DD conv=ascii if=filename of =output_filename. (2 Replies)
Discussion started by: srivalli
2 Replies

8. AIX

Iconv: conversion IBM-852 to UTF8 : which filesets to be installed ?

Hello. We have to make conversion from ibm-852 to UTF-8 (using iconv). We already installed bos.iconv.iso2, but I suppose another fileset is missing : # echo toto | iconv -f UTF-8 -t IBM-852 iconv: 0791-004 cannot open converter I know I can make this conversion from IBM-852 to UTF-8... (2 Replies)
Discussion started by: stephnane
2 Replies

9. UNIX for Beginners Questions & Answers

Explain iconv command

I have a requirement to remove all non-ascii characters from a fixed length file. I used the below command which is removing special characters but somehow the total record length is being truncated to one space less. If it is a multi-byte string then many characters at the end are being truncated.... (8 Replies)
Discussion started by: eskay
8 Replies
iconv(1)							   User Commands							  iconv(1)

NAME
iconv - code set conversion utility SYNOPSIS
iconv [-cs] -f frommap -t tomap [file...] iconv -f fromcode [-cs] [-t tocode] [file...] iconv -t tocode [-cs] [-f fromcode] [file...] iconv -l DESCRIPTION
The iconv utility converts the characters or sequences of characters in file from one code set to another and writes the results to stan- dard output. If no conversion exists for a particular character, an implementation-defined conversion is performed on this character. The list of supported conversions and the locations of the associated conversion tables are provided in the iconv(5) manual page. OPTIONS
The following options are supported: -c Omits any characters that are invalid in the codeset of the input file from the output. When -c is not used, the results of encountering invalid characters in the input stream depend on the specified codesets for the conversion. Invalid characters can be either those that are not valid characters in the codeset of the input file or those that have no corresponding character in the codeset of the output file. The presence or absence of -c does not affect the exit status of iconv. When fromcode is specified for the fromcodeset of the -f option or tocode is specified for the tocodeset of the -t option, the specification of -c may be ignored. -f fromcodeset Identifies the code set of the input file. The following two forms of the fromcodeset option-argument are recognized: fromcode The fromcode option-argument must not contain a slash (/) character. It is interpreted as the name of one of the codeset descriptions. frommap The frommap option-argument must contain a slash character. It is interpreted as the pathname of a charmap file as defined in charmap(5). If the pathname does not represent a valid, readable charmap file, the results are undefined. If this option is omitted, the codeset of the current locale is used. -l Writes all supported fromcode and tocode values to standard output. -s Suppresses any messages written to standard error concerning invalid characters. When -s is not used, the results of encountering invalid characters in the input stream depend on the specified codesets for the conversion. Invalid characters can be either those that are not valid characters in the codeset of the input file or those that have no corresponding character in the codeset of the output file. The presence or absence of -s does not affect the exit status of iconv. When fromcode is specified for the fromcodeset of the -f option or tocode is specified for the tocodeset of the -t option, the specification of -s may be ignored. -t tocodeset Identifies the code set used for the output file. The following two forms of the tocodeset option-argument are recognized: tocode The tocode option-argument must not contain a slash (/) character. It is interpreted as the name of one of the codeset descriptions. tomap The tomap option-argument must contain a slash character. It is interpreted as the pathname of a charmap file as defined in charmap(5). If the pathname does not represent a valid, readable charmap file, the results are undefined. If this option is omitted, the codeset of the current locale is used. If either -f or -t represents a charmap file but the other does not, or is omitted, or if both -f and -t are omitted, iconv fails as an error. OPERANDS
The following operands are supported: file A path name of an input file. If no file operands are specified, or if a file operand is '-', the standard input is used. EXAMPLES
Example 1: Converting and storing files The following example converts the contents of file mail1 from code set 8859 to 646fr and stores the results in file mail.local: example% iconv -f 8859 -t 646fr mail1 > mail.local ENVIRONMENT VARIABLES
See environ(5) for descriptions of the following environment variables that affect the execution of iconv: LANG, LC_ALL, LC_CTYPE, LC_MES- SAGES, and NLSPATH. EXIT STATUS
The following exit values are returned: 0 Successful completion. 1 An error has occurred. FILES
/usr/lib/iconv/iconv_data list of conversions supported by conversion tables ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWcsu | +-----------------------------+-----------------------------+ |Interface Stability |Standard | +-----------------------------+-----------------------------+ SEE ALSO
iconv(3C), iconv_open(3C), attributes(5), charmap(5), environ(5), iconv(5), iconv_unicode(5), standards(5) NOTES
Make sure that both charmap files use the same symbolic names for characters the two codesets have in common. The output format of the -l option is unspecified. The -l option is not intended for shell script usage. When fromcode or tocode is specified for the codeset conversion, iconv uses the iconv_open(3C) function. If iconv_open(3C) fails to open the specified codeset conversion, iconv searches for an appropriate conversion table. As for the supported codeset conversion by iconv_open(3C), please refer to iconv(5) and iconv_locale(5). SunOS 5.10 14 Nov 2003 iconv(1)
All times are GMT -4. The time now is 11:27 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy