How to verify weather it is a ebcdic file or not


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers How to verify weather it is a ebcdic file or not
# 1  
Old 04-03-2008
How to verify weather it is a ebcdic file or not

Hi all,

Please tell me how to verify weather it is a ebcdic file or not . I checked with file commond but it is giving like International Language text.

Regards,
Chaitu
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Check if file is EBCDIC or ASCII format

So, i have this requirement where i need to check the file format, whether it's EBCDIC or ASCII, and based on format retrieve the information from that file: my file is: file1.txt-->this ebcdic file file2.txt-->ascii file i tried below code: file=file1.txt type="`file $file`" i get... (7 Replies)
Discussion started by: gnnsprapa
7 Replies

2. UNIX for Beginners Questions & Answers

Convert EBCDIC(.DAT) FILE into ASCII FILE

Hi Team, I am having 100 EBCDIC files (i.e. DAT extension) and need to convert them into ASCII File by unix shell script. I tried with DD Command but its not providing output as expected. Sample Text: ------------------ גהאבדוחס@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Expected Output:... (2 Replies)
Discussion started by: JSM
2 Replies

3. UNIX for Dummies Questions & Answers

Eliminate Header and footer from EBCDIC file

Is there any command to eliminate Header and footer from EBCDIC file (4 Replies)
Discussion started by: abhilashnair
4 Replies

4. Shell Programming and Scripting

Use PYTHON to collect data weather and print in new file

Hi all, i have a task to do with Python and because i'm a beginner on it i would like your help on this. Create a python script that: Every hour collect the Temperature (e.g. 29C) and Current Condition (e.g. Clear) from this website wunderground.com/global/stations/54511.html Create a CSV... (0 Replies)
Discussion started by: ragaga123
0 Replies

5. Red Hat

Unable to convert EBCDIC file to ASCII file

Hello all, To give you all a little bit of background. We recently migrated from HP-UX to Redhat Linux and one of the command I used to run on HP-UX to convert an EBCDIC file to ASCII file isn't working on Linux. The code is as follow: cat workout2.dat | dd cbs=250 conv=block conv=ascii... (3 Replies)
Discussion started by: sethmj
3 Replies

6. HP-UX

how to encrypt a file with ebcdic conversion

Hi guys! My sql*plus program generating dat file. so this dat file i want to write in destination sever path with ebcdic formate through SFTP only, because my destination server is mainframe it can read only ebcdic formate files only. could you please help on this........ i was written... (3 Replies)
Discussion started by: sgangadhar19
3 Replies

7. Shell Programming and Scripting

How to check if the file has EBCDIC or ascii characters

Hi, is there a way to check if the initial few characters are ebcdic or ascii in a file? (1 Reply)
Discussion started by: ahmedwaseem2000
1 Replies

8. Linux

Check weather a file is in use or not?

Hi, Hi want to check weather a file is being used by using a command or java code or shell script. So, can any body give me some idea.. Thanks Buddhika (3 Replies)
Discussion started by: cse.buddhika
3 Replies

9. Shell Programming and Scripting

save weather radar to local time-named file every 15 minutes

I think I can do this myself now, but I am always amazed by how people can do things cleaner and simpler than I end up doing... Using cron, I want to save the image found at: http://radar.weather.gov/ridge/Conus/RadarImg/centgrtlakes.gif every 15 minutes to a local file , such as ... (1 Reply)
Discussion started by: brucewestfall
1 Replies

10. Shell Programming and Scripting

how to check weather file is blank or not?

Dear All I want to do following task. Kindly suggest. In my script every hour one file is genarated. say xyz.txt. Now if this file contain some data then i want to do task A and if file is blank then i want to do nothing. Kindly help me to do this. regards jaydeep (5 Replies)
Discussion started by: jaydeep_sadaria
5 Replies
Login or Register to Ask a Question
Weather::Com::Simple(3pm)				User Contributed Perl Documentation				 Weather::Com::Simple(3pm)

NAME
Weather::Com::Simple - Simple Wrapper around the Weather::Com::Cached API SYNOPSIS
use Data::Dumper; use Weather::Com::Simple; # define parameters for weather search my %params = ( 'partner_id' => 'somepartnerid', 'license' => '12345678', 'place' => 'Heidelberg', ); # instantiate a new weather.com object my $simple_weather = Weather::Com::Simple->new(%params); my $weather = $simple_weather->get_weather(); print Dumper($weather); DESCRIPTION
Weather::Com::Simple is a very high level wrapper around Weather::Com::Cached. You provide a place to search for (e.g. a city or "city, country") and you'll get back a simple hash containing some usefull weather information about all locations whose name matches to the search string. CONSTRUCTOR
new(hash or hashref) The constructor takes the same hash or hashref as Weather::Com::Cached does. Please refer to that documentation for further details. Except from the Weather::Com::Cached parameters this constructor takes a parameter place which defines the location to search for. It is not possible to provide the location to search to the get_weather() method! METHODS
get_weather() This method invokes the Weather::Com::Cached API to fetch some weather information and returns an arrayref containing one or many hashrefs with some high level weather information. If no location matching the search string is found, it returns undef. When you construct a Weather::Com::Simple object like shown in the synopsis above, the arrayref returned has the following structure: $VAR1 = [ { 'place' => 'Heidelberg, Germany', 'celsius' => '0', 'fahrenheit' => '32', 'temperature_celsius' => '0', 'temperature_fahrenheit' => '32' 'windchill_celsius' => '-6', 'windchill_fahrenheit' => '21', 'windspeed_kmh' => '26', 'windspeed_mph' => '16', 'wind' => '16 mph 26 km/h from the North Northeast', 'updated' => '11:50 AM Local on January 26, 2005', 'conditions' => 'Partly Cloudy', 'pressure' => '30.21 in / 1023.0 hPa', 'humidity' => '60', }, { 'place' => 'Heidelberg, KY', ... }, { 'place' => 'Heidelberg, MS', ... } ]; SEE ALSO
See also documentation of Weather::Com and Weather::Com::Cached. AUTHOR
Thomas Schnuecker, <thomas@schnuecker.de> COPYRIGHT AND LICENSE
Copyright (C) 2004-2007 by Thomas Schnuecker This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The data provided by weather.com and made accessible by this OO interface can be used for free under special terms. Please have a look at the application programming guide of weather.com (http://www.weather.com/services/xmloap.html) perl v5.8.8 2007-07-09 Weather::Com::Simple(3pm)