crucial storage issue with ebcdic to ascii converter


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting crucial storage issue with ebcdic to ascii converter
Prev   Next
# 1  
Old 10-23-2008
Data crucial storage issue with ebcdic to ascii converter

Hi,

I am using following command to convert from ebcdic to ascii :-

dd if=input_file of=out_file conv=ascii

but, since input_ile itself is 10 GB big, out_file becomes around 2 to 3 times bigger... got space restrictions in the env..

I am stuck .. any help ..??

Finder255
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. 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

2. 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

3. UNIX for Advanced & Expert Users

Conversion from EBCDIC to Ascii OR unicode

I have a file in my Unix ( SOLARIS ) with EBCDIC format...I want this file to read in ASCII OR unicode...Is it possible with UNIX to convert this file on ASCII OR UNICODE format from EBCDIC format? I was searching through web and found only conversion table :( Request Rejected Below is... (16 Replies)
Discussion started by: joshilalit2004
16 Replies

4. 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

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. Shell Programming and Scripting

EBCDIC Format to ASCII

Hi, we have source file with EBCDIC format(Main Frame files) where we receving from source system. I would like to convert the EBCDIC format file to unix systemformat(ex: .csv,txt ) I have wrote script like: dd if=<SRCPATH>yyy.xxx.RB065 of=<SRCPATH>/output.csv ibs=800 cbs=80... (8 Replies)
Discussion started by: koti_rama
8 Replies

7. 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

8. 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

9. 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

10. 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
Login or Register to Ask a Question
RG::Reprof(3pm) 					User Contributed Perl Documentation					   RG::Reprof(3pm)

NAME
RG::Reprof::Reprof - protein secondary structure and accessibility predictor SYNOPSIS
use RG::Reprof::Reprof; DESCRIPTION
See module commented source for further details. Methods OBJ RG::Reprof::Reprof->new( model_dir => PATH ) Default model_dir: /tmp/lkajan/root/share/reprof. Returns new instance of RG::Reprof::Reprof. int $OBJ->run( input_file => PATH, out_file => PATH, mutation_file => PATH, specific_models => hashref, output_func => coderef ) out_file may be a directory. mutation_file may be undefined. specific_models may be undefined. This is a hash of model and feature files with 'model_name' keys like: { 'fub_model' => '/path/to/model_file', 'fub_features' => '/path/to/features_file' } Check the module source for the list for model names. void output_func( out_file, sec_pred, acc_pred, sequence ) - function to call when output is ready. If undefined, the built-in write_output() function is called that prints results to one or more files. The following positional parameters are passed to this function: out_file Output file name. sec_pred Secondary structure prediction, see source for details. acc_pred Accessibility prediction, see source for details. sequence Reference to array of residues of input sequence (e.g. [ 'M', 'A', 'G', ... ] ). AUTHOR
Original version by Peter Hoenigschmid <hoenigschmid@rostlab.org> and Burkhard Rost. Some perl module work and documentation by Laszlo Kajan <lkajan@rostlab.org>. SEE ALSO
<http://rostlab.org/> perl v5.14.2 2012-01-13 RG::Reprof(3pm)