![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Rules & FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Advanced & Expert Users Advanced UNIX and Linux questions go here. Expert-to-Expert. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Compiling scripts written in Unix | coburn | Shell Programming and Scripting | 1 | 11-09-2006 07:17 PM |
| How can I run scripts in my unix account from batch file in Windows? | olgafb | UNIX for Dummies Questions & Answers | 7 | 05-27-2006 06:40 AM |
| Run the scripts from windows to UNIX | srinivas peyyal | Shell Programming and Scripting | 3 | 03-29-2005 05:11 AM |
| FTP Shell Scripts from Windows to Unix: files have exotic characters | Laud12345 | Shell Programming and Scripting | 4 | 02-17-2005 01:57 PM |
| checking the size of unix cd on windows platform | johnjsm | Windows & DOS: Issues & Discussions | 2 | 12-09-2004 01:49 AM |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
Can anybody help me in finding out a solution for the problem below?
When we write .unix or .sh files in windows OS and port them to Unix platforms there is a character ^M inserted at the end of each line of the script file. During ftp porting I set the transfer mode as ASCII for the script files where I ported files individually.Then there is no such problem. But when we go for folder transfer where the folder has the script files dumped the problem comes again where the space is inserted with ^M at the end of lines... Please help me in sorting out this soon.. Thanks in Advance. |
| Forum Sponsor | ||
|
|
|
|||
|
look for ...
Hi,
Most UNIX types have a util called like 'dos2unix'. those utilities remove the ^M from the end of line. In DOS/MS the line end with <cr><lf>, UNIX only uses <lf>, this is the reason for it. it also possible do it with vi or sed, see next thread for more information there was a strange character(^M) been added automatically in UNIX |
|
|||
|
Thanks for your answers.
Let me explain my actual problem in detail. We developed a product in windows and prepared installers both for windows and unix OS.The project files contains some unix scripts for the application to run on Unix OS. So when we run the installer and install the product in Unix OS , the unix script files which get installed pertaining to the application have this ^M at the end of the lines. So how to rectify the problem. The solution you gave solves the problem in individual file porting. But how about for the installer files and installer? Please send me a solution. Thanks in Advance |
|
|||
|
> We developed a product in windows and prepared installers
> both for windows and unix OS.The project files contains some > unix scripts for the application to run on Unix OS. > So when we run the installer and install the product in Unix > OS , the unix script files which get installed pertaining to the > application have this ^M at the end of the lines. The obvious solution to the problem is to use an Editor that's capable of writing out Unix compatible files. Probably the best commercial one for Windows users is TextPad http://www.textpad.com. HTH Kevin |
|
|||
|
... did you solve this ?
... if not, how are you porting the files from the windows platform to UNIX ? Some FTP clients will take care of this problem in the transfer - I think CuteFTP is one of them. www.cuteftp.com
If not come back and we'll try something else.... |