LinuxQuestions.org
Did you know LQ has a Linux Hardware Compatibility List?
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > Programming
User Name
Password
Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.

Notices

Reply
 
Thread Tools
Old 12-18-2007, 02:00 PM   #1
Micro420
Senior Member
 
Registered: Aug 2003
Location: Berkeley, CA
Distribution: Mac OS X Leopard 10.5.5, Windows 2003 Server/Vista/XP/2000/NT/98, Ubuntux64, CentOS4.7/5.2
Posts: 2,980
Thanked: 0
Shell scripts in Windows Cygwin


[Log in to get rid of this advertisement]
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??
Micro420 is offline     Reply With Quote
Old 12-18-2007, 09:18 PM   #2
ghostdog74
Senior Member
 
Registered: Aug 2006
Posts: 1,674
Blog Entries: 5
Thanked: 88
Quote:
It seems to stick in random characters and letters in my script,
how does it look like
ghostdog74 is offline     Reply With Quote
Old 12-19-2007, 11:05 PM   #3
Micro420
Senior Member
 
Registered: Aug 2003
Location: Berkeley, CA
Distribution: Mac OS X Leopard 10.5.5, Windows 2003 Server/Vista/XP/2000/NT/98, Ubuntux64, CentOS4.7/5.2
Posts: 2,980
Thanked: 0

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

Last edited by Micro420; 12-19-2007 at 11:08 PM..
Micro420 is offline     Reply With Quote
Old 12-20-2007, 06:53 AM   #4
allend
Member
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware-current
Posts: 840
Thanked: 47
How are you editing your scripts? \r looks suspiciously like Windows carriage return.
allend is offline     Reply With Quote
Old 12-20-2007, 08:28 AM   #5
Hivemind
Member
 
Registered: Sep 2004
Posts: 273
Thanked: 0
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.
Hivemind is offline     Reply With Quote
Old 12-20-2007, 11:45 AM   #6
Micro420
Senior Member
 
Registered: Aug 2003
Location: Berkeley, CA
Distribution: Mac OS X Leopard 10.5.5, Windows 2003 Server/Vista/XP/2000/NT/98, Ubuntux64, CentOS4.7/5.2
Posts: 2,980
Thanked: 0

Original Poster
Quote:
Originally Posted by allend View Post
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 View Post
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?
Micro420 is offline     Reply With Quote
Old 12-20-2007, 06:08 PM   #7
chrism01
Guru
 
Registered: Aug 2004
Location: Brisbane
Distribution: Centos 5.3
Posts: 7,283
Thanked: 311
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
chrism01 is offline     Reply With Quote
Old 12-20-2007, 07:24 PM   #8
Micro420
Senior Member
 
Registered: Aug 2003
Location: Berkeley, CA
Distribution: Mac OS X Leopard 10.5.5, Windows 2003 Server/Vista/XP/2000/NT/98, Ubuntux64, CentOS4.7/5.2
Posts: 2,980
Thanked: 0

Original Poster
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?
Micro420 is offline     Reply With Quote
Old 12-20-2007, 07:45 PM   #9
allend
Member
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware-current
Posts: 840
Thanked: 47
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
allend is offline     Reply With Quote
Old 12-20-2007, 08:01 PM   #10
Micro420
Senior Member
 
Registered: Aug 2003
Location: Berkeley, CA
Distribution: Mac OS X Leopard 10.5.5, Windows 2003 Server/Vista/XP/2000/NT/98, Ubuntux64, CentOS4.7/5.2
Posts: 2,980
Thanked: 0

Original Poster
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
Micro420 is offline     Reply With Quote
Old 12-20-2007, 08:10 PM   #11
chrism01
Guru
 
Registered: Aug 2004
Location: Brisbane
Distribution: Centos 5.3
Posts: 7,283
Thanked: 311
Frankly, if possible, only edit on the machine type your code will run on, although you can use dos2unix, vim etc to 'fix' stuff.
chrism01 is offline     Reply With Quote
Old 01-04-2008, 11:56 PM   #12
Micro420
Senior Member
 
Registered: Aug 2003
Location: Berkeley, CA
Distribution: Mac OS X Leopard 10.5.5, Windows 2003 Server/Vista/XP/2000/NT/98, Ubuntux64, CentOS4.7/5.2
Posts: 2,980
Thanked: 0

Original Poster
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.
Micro420 is offline     Reply With Quote
Old 01-05-2008, 08:33 PM   #13
chrism01
Guru
 
Registered: Aug 2004
Location: Brisbane
Distribution: Centos 5.3
Posts: 7,283
Thanked: 311
Correctamundo
chrism01 is offline     Reply With Quote
Old 01-07-2008, 12:29 PM   #14
bigearsbilly
Senior Member
 
Registered: Mar 2004
Location: england
Distribution: FreeBSD, Debian, Puppy
Posts: 2,663
Thanked: 14
cat -vets is a good way to see these characters,

dos2unix and unix2dos corrects them
bigearsbilly is offline     Reply With Quote
Old 10-17-2009, 12:25 PM   #15
Shock2k
LQ Newbie
 
Registered: Oct 2009
Posts: 1
Thanked: 0
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.
windows_vista Shock2k is offline     Reply With Quote

Reply

Bookmarks


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Help with Cygwin shell script? corbintechboy General 1 12-26-2007 11:59 AM
Cygwin shell programming question Rostfrei Linux - General 6 06-30-2006 04:36 PM
Possible ways to run shell scripts on Windows Uday123 Linux - General 1 04-05-2006 01:48 AM
writing Linux shell scripts in Windows NightWolf_NZ Linux - Newbie 3 09-10-2003 10:28 PM
Cygwin:How do you turn the bash shell bell off? petercool Linux - Newbie 8 05-23-2003 11:48 AM


All times are GMT -5. The time now is 10:50 PM.

Main Menu
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
RSS2  LQ Podcast
RSS2  LQ Radio
Twitter: @linuxquestions
identi.ca: @linuxquestions
Facebook: @linuxquestions
Open Source Consulting | Domain Registration