LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Programming (https://www.linuxquestions.org/questions/programming-9/)
-   -   Shell scripts in Windows Cygwin (https://www.linuxquestions.org/questions/programming-9/shell-scripts-in-windows-cygwin-607659/)

Micro420 12-18-2007 01:00 PM

Shell scripts in Windows Cygwin
 
Just wondering if anyone else writes shell/BASH scripts using Cygwin in Windows? For some reason, my backup script, which works fine in Linux, does not work in Cygwin under Windows. It seems to stick in random characters and letters in my script, which causes it to fail. Anyone else notice any irregularities with Cygwin in Windows??

ghostdog74 12-18-2007 08:18 PM

Quote:

It seems to stick in random characters and letters in my script,
how does it look like

Micro420 12-19-2007 10:05 PM

Here's my code:

Code:

#!/bin/bash
#
# backup script
D=`/usr/bin/date -d "-1 day" +"%Y-%m-%d"`
DOM=`/usr/bin/date +%a`
/usr/bin/tar -N $D -czvf /cygdrive/g/uhall/projects-$DOM.tar.gz /cygdrive/d/projects/
exit

Here's how I am executing the shell script in DOS
Code:

c:\cygwin\bin\bash --login "c:\backup-script.sh"
Unfortunately I can't copy/paste the error, but it basically starts changing my paths by adding extra "\" and "r" in there. This script works 100% fine in Linux, but not Cygwin (paths are changed appropriately, of course). Keep in mind that this works fine when I manually type it in Cygwin without the variables, but when I launch it from a batch script in DOS then it gets all messed up.

allend 12-20-2007 05:53 AM

How are you editing your scripts? \r looks suspiciously like Windows carriage return.

Hivemind 12-20-2007 07:28 AM

If you are using binary mounts on cygwin (which is the default and also recommended), your script must use unix style line endings. Run the command d2u on your scripts.

Micro420 12-20-2007 10:45 AM

Quote:

Originally Posted by allend (Post 2996817)
How are you editing your scripts? \r looks suspiciously like Windows carriage return.

I am using either notepad.exe or the simple 'edit' command in DOS. I don't see any weird characters in my script.

Quote:

Originally Posted by Hivemind (Post 2996898)
If you are using binary mounts on cygwin (which is the default and also recommended), your script must use unix style line endings. Run the command d2u on your scripts.

What the heck is a binary mount? What are unix style endings?

chrism01 12-20-2007 05:08 PM

See here: http://en.wikipedia.org/wiki/Newline
Basically, dos/windows uses 2 (invisible) chars to denote a line ending (cr & lf), Unix/Linux uses only 1 (lf).
These are represented in explicit coding as \r\n (MS), \n (Linux).
See also: http://www.asciitable.com/

HTH

Micro420 12-20-2007 06:24 PM

Thanks for the info! So if these 2 characters are invisible, how would I know they are there other than seeing the output error? I am seeing the \r in my path, and that does explain why it is magically showing up. Are there other editors in Windows I can use that won't put these invisible characters?

allend 12-20-2007 06:45 PM

You can see more information about your problem here:
http://cygwin.com/cygwin-ug-net/usin....html#id319037

You can get information on editors here:
http://x.cygwin.com/docs/faq/cygwin-...html#q-editors

Micro420 12-20-2007 07:01 PM

Thank you, all! It's frustrating to see that there are those small nuisances that can make or break a script. :( I'm also glad that I'm not the only one that is going crazy over this and that it is documented

chrism01 12-20-2007 07:10 PM

Frankly, if possible, only edit on the machine type your code will run on, although you can use dos2unix, vim etc to 'fix' stuff.

Micro420 01-04-2008 10:56 PM

Sorry for the long delays but I was out on a 2-week vacation!

I fixed the problem by using and installing the Cygwin nano editor. I had to go to the end of each line and press the DEL key to get rid of the hidden "\r". My scripts work fine now. So my future advice to others using Cygwin is to NOT use the Windows Notepad or Wordpad editor to write your scripts.

chrism01 01-05-2008 07:33 PM

Correctamundo :)

bigearsbilly 01-07-2008 11:29 AM

cat -vets is a good way to see these characters,

dos2unix and unix2dos corrects them

Shock2k 10-17-2009 11:25 AM

Might Help
 
I'm a Windows guy working in a Linux world. So I wrote my .sh script in a 'Notepad.exe' before FTP'ing it up to my linux servers.

I spent about 8 hours on this problem, so sad. I opened the file in gedit (centos), and just went to the begining of each line and hit 'delete' twice (if you have to hit it twice you know you have the problem) the rentered the "return".

This cleared the problem.

Cheers!
Chris.


All times are GMT -5. The time now is 03:35 AM.