Sponsored Content
Top Forums UNIX for Advanced & Expert Users Conversion from EBCDIC to Ascii OR unicode Post 302931586 by Don Cragun on Wednesday 14th of January 2015 02:48:41 AM
Old 01-14-2015
EBCDIC is a codeset; not a format.
Two common utilities to convert from EBCDIC to ASCII or UTF-8 are
Code:
iconv -f fromcode -t tocode EBCDIC_input_file

(you can use iconv -l to get a list of fromcode and tocode values for your system), and
Code:
dd if=EBCDIC_input_file of=ASCII_output_file conv=ascii

This User Gave Thanks to Don Cragun For This Post:
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

ascii to ebcdic conversion

Hello, I need a program for ascii to ebsdic conversion. If anybody can help, it'll be greatly appreciated. Thanks. (1 Reply)
Discussion started by: er_ashu
1 Replies

2. UNIX for Dummies Questions & Answers

Conversion from EBCDIC to ASCII

when i try to convert a mainframe EBCDIC file to ASCII ,i dont see correct file this is the source file ... (3 Replies)
Discussion started by: venkatvelpula
3 Replies

3. Solaris

EBCDIC to ASCII Binary conversion issue on Solaris i-series Unix

Hi All, I am facing EBCDIC to ASCII Binary conversion on Solaris i-series Unix system. However this is working fine on Solaris Sparc Unix system. Input file having EBCDIC format does not work on Solaris i-series Unix system. Could you please tell me, what will be the root cause for same? (14 Replies)
Discussion started by: amodkavi
14 Replies

4. UNIX for Dummies Questions & Answers

Help! EBCDIC format to ASCII

Hi everyone, I have a 70MB EBCDIC file, with record length 102, block size 32742 and IBM standard label. I commanded dd if=input file of=outputfie ibs=32742 cbs=102 conv=ascii but I still don't get a viewable file under ASCII. Can anyone told me what's the problem? Do I need... (12 Replies)
Discussion started by: hrchl86
12 Replies

5. UNIX for Advanced & Expert Users

Conversion of data - ebcdic to ascii

Hi, I want to convert ebcdic values to ascii values. Are there anyany specific c++ libraries with g++ compiler, which can do it ? gcc version 4.1.2 20080704 (Red Hat 4.1.2-54) (0 Replies)
Discussion started by: tostay2003
0 Replies

6. Programming

Ebcdic to ascii

Hi, I want to convert ebcdic values to ascii values. Are there anyany specific c++ libraries with g++ compiler, which can do it ? gcc version 4.1.2 20080704 (Red Hat 4.1.2-54) (19 Replies)
Discussion started by: tostay2003
19 Replies

7. UNIX for Dummies Questions & Answers

EBCDIC TO ASCII Conversion through UNIX Command

Hi All , I have a mainframe file which contains the data in EBCDIC unreadable format.I have downloaded this raw unreadable file from mainframe system to windows in text format then I pushed to Unix system.Now I want to convert this file to ASCII readable format file in unix.Can anyone advise me... (2 Replies)
Discussion started by: STCET22
2 Replies

8. Shell Programming and Scripting

Need help for EBCDIC TO ASCII conversion through UNIX

Hi All , We have a mainframe file which is in EBCDIC format.We dont have direct access to mainframe ,client has provided us the mainframe file in unix box.The mainframe file is containing pact data(COMP1 ,COMP2 etc) which are unreadble.Can anyone suggest me how to convert this kind of ebcdic... (7 Replies)
Discussion started by: STCET22
7 Replies

9. UNIX for Advanced & Expert Users

EBCDIC to ASCII conversion

Hi, I have a input file which is EBCIDIC and it has packed decimals. Can anyone help me to convert EBCIDIC file to ASCII(Need to convert even Packed decimal values also to normal format). Thanks swapna (12 Replies)
Discussion started by: swapna_1990
12 Replies

10. UNIX for Advanced & Expert Users

EBCDIC to ASCII conversion

Hi, We have a mainframe file which is in EBCDIC format.We dont have direct access to mainframe ,client has provided us the mainframe file.The mainframe file is containing pact data(COMP1 ,COMP2 etc) which are unreadble.Can anyone suggest me how to convert this kind of ebcdic file to ascii... (11 Replies)
Discussion started by: swapna_1990
11 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 char- acters can be either those that are not valid characters in the codeset of the input file or those that have no corre- sponding 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 charac- ters can be either those that are not valid characters in the codeset of the input file or those that have no correspond- ing 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 recog- nized: 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.11 14 Nov 2003 iconv(1)
All times are GMT -4. The time now is 04:26 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy