[SLUG] Rusty Russell – Kernel Code Developer

2014-02-20 Thread Richard Ibbotson
Hi http://sleepypenguin.homelinux.org/journalism/?p=191 Might interest someone out there. I've re-written some of the magazine features that I've produced over the years. -- Richard www.sheflug.org.uk https://twitter.com/SleepyPenguin1 -- SLUG - Sydney Linux User's Group Mailing List -

[SLUG] cygwin script file name error

2014-02-20 Thread lists
I've made a crude script under cygwin/XP, it was mainly working, but, after some edits, I'm getting a '?' appended to file name ? as so: sms_out_now.txt? when I paste individual lines at command line, it seems to work, when I run from the 3 line script, it seems to append the '?' where am I going

Re: [SLUG] cygwin script file name error

2014-02-20 Thread kfoskey
This will be an unreadable character in your script. Cygwin has two modes Unix line ends and Windows line ends.The ? is actually a \r In 'vi' ':set ff=unix'':wq' to switch line endings. if there is a \r showing go to it and press 'x' to delete it. -Original Message-

Re: [SLUG] cygwin script file name error

2014-02-20 Thread Voytek
kfos...@tpg.com.au wrote: This will be an unreadable character in your script. Cygwin has two modes Unix line ends and Windows line ends.The ? is actually a \r In 'vi' ':set ff=unix'':wq' to switch line endings. if there is a \r showing go to it and press 'x' to delete it.

Re: [SLUG] cygwin script file name error

2014-02-20 Thread Voytek
kfos...@tpg.com.au wrote: This will be an unreadable character in your script. Cygwin has two modes Unix line ends and Windows line ends.The ? is actually a \r In 'vi' ':set ff=unix'':wq' to switch line endings. if there is a \r showing go to it and press 'x' to delete it. If I