dos2unix equivalent in hpunix


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers dos2unix equivalent in hpunix
# 1  
Old 12-13-2007
dos2unix equivalent in hpunix

hi,
what is the dos2unix equivalent in hpunix ??
# 2  
Old 12-13-2007
Some alternatives:

Code:
awk '{sub(/\r$/,"");print}'

or:

Code:
sed 's/.$//'

Regards
# 3  
Old 12-13-2007
hi frank,

we give,

dos2unix <filename> at the prompt

but how to use your solution... can u please explain in detail
# 4  
Old 12-13-2007
Same manner:

Code:
awk '{sub(/\r$/,"");print}' filename

or:

Code:
sed 's/.$//' filename

Regards
# 5  
Old 12-13-2007
Hi frank,
still i do have the ^M character as the last one in every line ... Smilie

wat to do ??
# 6  
Old 12-13-2007
ftp the file to a windows machine as a binary file

then ftp it back again as a text file.
# 7  
Old 12-13-2007
hi,

sorry... its AIX and not hp ux .. sorry about this ..

frank,
I tried with your options.. not working

porter,
I did urs too... but Smilie

wat to do now
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Return for Dos2UNIX

Hi, I have to test to see if dos2unix is installed on the machine. Right now I am typing in dos2unix and hitting ctrl C. Is there a better workaround for this. If dos2unix is there is need to print the statement saying its there and vice versa. How can i accomplish this. thank you in... (1 Reply)
Discussion started by: tarreddy
1 Replies

2. UNIX for Advanced & Expert Users

Dos2UNIX formatting problem

Hi, I was trying to dos2unix a file that has some special characters but dos2unix converted those into different format. I am working on sun server. I guess the default for dos2unix on sun server is ISO format . Can i change the format so that it does the conversion in UTF format? Because I... (3 Replies)
Discussion started by: abhi1988sri
3 Replies

3. Shell Programming and Scripting

problem with dos2unix command

hi friends i am using the dos2unix command to remove the ^M characters coming at the end of each line , but i getting the folowing message: > dos2unix file.sql could not open /dev/kbd to get keyboard type US keyboard assumed could not get keyboard type US keyboard assumed ---------file... (6 Replies)
Discussion started by: neelmani
6 Replies

4. UNIX for Dummies Questions & Answers

return value of dos2unix

if (my $temp2=$b2e_r->cmd(cmd=>"dos2unix $b2e_file_name")) Even if it fails as, Jul 25 17:17:02 dos2unix /volume/systest/hello_manoj.results dos2unix /volume/systest/hello_manoj.results dos2unix: converting file /volume/systest/hello_manoj.results to UNIX format ... Failed to open... (3 Replies)
Discussion started by: manojn
3 Replies

5. Shell Programming and Scripting

dos2unix

hi, need some urgent inputs..... I have a folder, which has both files and directories as its contents. I want to convert all the files (Excluding the directories) from dos to unix mode using the command 'dos2unix'..... please can any one help me in providing the command to convert... (3 Replies)
Discussion started by: cmaroju
3 Replies

6. Shell Programming and Scripting

How to set gobal enviroment vaibles in HPUNIX

Hi , I have one script setting envrioments varaible , calling this scripts in another script,i wnat to user thoese envrioemnt variables in parent script. I am trying set envrioment variables with "export" comand i am unable to access thoese envrioment variables. $ cat dm_env21... (3 Replies)
Discussion started by: ramakoti.s
3 Replies

7. UNIX for Dummies Questions & Answers

Regarding dos2unix command

Hi, Does anyone know, how to use dos2unix command for binary files? When i am using the command, the binary file gets converted to ASCII file. I want binary file to remain in the binary format. (4 Replies)
Discussion started by: agarwal
4 Replies

8. Linux

dos2unix permission problem

Hi All, I want to use the command "dos2unix" to format the file line break from win to unix, but after changing the file permission has been change to 600. how can i keep the original permisson after formatting? Many thz (2 Replies)
Discussion started by: eric_wong_ch
2 Replies

9. UNIX for Advanced & Expert Users

Asking on dos2unix syntax

Hi, like to ask why when i tried to run my .sh file to convert maybe a text file using dos2unix -ascii ${DATAFILE5} ${DATAFILE5} i got an error saying : could not open /dev/kbd to get keyboard type US keyboard assumed could not get keyboard type US keyboard assumed Is it because we dun like... (4 Replies)
Discussion started by: blueberry80
4 Replies

10. HP-UX

on hpunix cpu usage fields

i have found a structure contained in file global _pstat_body.h at the path /usr/include/sys/pstat which is named __pst_dynamic . A field by name psd_cpu_time is an array of maximum cpu states the kernel supports . i,e psd_cpu_time specify all the cpu timings in an array... (8 Replies)
Discussion started by: vish_shan
8 Replies
Login or Register to Ask a Question