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 |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
12-18-2007, 02:00 PM
|
#1
|
Senior Member
Registered: Aug 2003
Location: Berkeley, CA
Distribution: Mac OS X Leopard 10.6.2, Windows 2003 Server/Vista/7/XP/2000/NT/98, Ubuntux64, CentOS4.8/5.4
Posts: 2,986
Rep:
|
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??
|
|
|
12-18-2007, 09:18 PM
|
#2
|
Senior Member
Registered: Aug 2006
Posts: 2,697
|
Quote:
It seems to stick in random characters and letters in my script,
|
how does it look like
|
|
|
12-19-2007, 11:05 PM
|
#3
|
Senior Member
Registered: Aug 2003
Location: Berkeley, CA
Distribution: Mac OS X Leopard 10.6.2, Windows 2003 Server/Vista/7/XP/2000/NT/98, Ubuntux64, CentOS4.8/5.4
Posts: 2,986
Original Poster
Rep:
|
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.
|
|
|
12-20-2007, 06:53 AM
|
#4
|
LQ 5k Club
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,527
|
How are you editing your scripts? \r looks suspiciously like Windows carriage return.
|
|
|
12-20-2007, 08:28 AM
|
#5
|
Member
Registered: Sep 2004
Posts: 273
Rep:
|
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.
|
|
|
12-20-2007, 11:45 AM
|
#6
|
Senior Member
Registered: Aug 2003
Location: Berkeley, CA
Distribution: Mac OS X Leopard 10.6.2, Windows 2003 Server/Vista/7/XP/2000/NT/98, Ubuntux64, CentOS4.8/5.4
Posts: 2,986
Original Poster
Rep:
|
Quote:
Originally Posted by allend
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
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?
|
|
|
12-20-2007, 06:08 PM
|
#7
|
LQ Guru
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,426
|
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
|
|
|
12-20-2007, 07:24 PM
|
#8
|
Senior Member
Registered: Aug 2003
Location: Berkeley, CA
Distribution: Mac OS X Leopard 10.6.2, Windows 2003 Server/Vista/7/XP/2000/NT/98, Ubuntux64, CentOS4.8/5.4
Posts: 2,986
Original Poster
Rep:
|
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?
|
|
|
12-20-2007, 07:45 PM
|
#9
|
LQ 5k Club
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,527
|
|
|
|
12-20-2007, 08:01 PM
|
#10
|
Senior Member
Registered: Aug 2003
Location: Berkeley, CA
Distribution: Mac OS X Leopard 10.6.2, Windows 2003 Server/Vista/7/XP/2000/NT/98, Ubuntux64, CentOS4.8/5.4
Posts: 2,986
Original Poster
Rep:
|
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
|
|
|
12-20-2007, 08:10 PM
|
#11
|
LQ Guru
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,426
|
Frankly, if possible, only edit on the machine type your code will run on, although you can use dos2unix, vim etc to 'fix' stuff.
|
|
|
01-04-2008, 11:56 PM
|
#12
|
Senior Member
Registered: Aug 2003
Location: Berkeley, CA
Distribution: Mac OS X Leopard 10.6.2, Windows 2003 Server/Vista/7/XP/2000/NT/98, Ubuntux64, CentOS4.8/5.4
Posts: 2,986
Original Poster
Rep:
|
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.
|
|
|
01-05-2008, 08:33 PM
|
#13
|
LQ Guru
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,426
|
Correctamundo 
|
|
|
01-07-2008, 12:29 PM
|
#14
|
Senior Member
Registered: Mar 2004
Location: england
Distribution: Mint, Armbian, NetBSD, Puppy, Raspbian
Posts: 3,516
|
cat -vets is a good way to see these characters,
dos2unix and unix2dos corrects them
|
|
|
10-17-2009, 12:25 PM
|
#15
|
LQ Newbie
Registered: Oct 2009
Posts: 1
Rep:
|
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.
|
|
1 members found this post helpful.
|
All times are GMT -5. The time now is 10:30 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|