Thank you very much for your answers !
Guillaume
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/
mwoehlke wrote:
> [snip]
>
> Actually, I intentionally did not use a shebang... 'mkdir -p "$@"'
> should work on any Bourne-like shell, although in this case '#!/bin/sh'
> should suffice.
>
> I'm used to writing portable scripts; anything other than '#!/bin/sh' is
> very non-portable, and if the
On Tue, 22 Aug 2006, Dave Korn wrote:
> On 22 August 2006 16:57, mwoehlke wrote:
>
> > Dave Korn wrote:
> >> On 22 August 2006 07:50, Guillaume MARTIN wrote:
> >>
> >>> How could I install mkdir in cygwin ?
> >>
> >> [EMAIL PROTECTED] /tmp> alias mkdirhier='mkdir -p'
> >
> > ...but you would have
Dave Korn wrote:
On 22 August 2006 16:57, mwoehlke wrote:
Dave Korn wrote:
On 22 August 2006 07:50, Guillaume MARTIN wrote:
How could I install mkdir in cygwin ?
[EMAIL PROTECTED] /tmp> alias mkdirhier='mkdir -p'
...but you would have to set that alias in whatever this script is...
Better:
On 22 August 2006 16:57, mwoehlke wrote:
> Dave Korn wrote:
>> On 22 August 2006 07:50, Guillaume MARTIN wrote:
>>
>>> How could I install mkdir in cygwin ?
>>
>> [EMAIL PROTECTED] /tmp> alias mkdirhier='mkdir -p'
>
> ...but you would have to set that alias in whatever this script is...
Yep.
Dave Korn wrote:
On 22 August 2006 07:50, Guillaume MARTIN wrote:
How could I install mkdir in cygwin ?
[EMAIL PROTECTED] /tmp> alias mkdirhier='mkdir -p'
...but you would have to set that alias in whatever this script is...
Better:
$ cat > /bin/mkdirhier
:
mkdir -p "$@"
^D
$ chmod +x /bi
On 22 August 2006 07:50, Guillaume MARTIN wrote:
>
> How could I install mkdir in cygwin ?
[EMAIL PROTECTED] /tmp> mkdir a/b/c/d/e/f
mkdir: cannot create directory `a/b/c/d/e/f': No such file or directory
[EMAIL PROTECTED] /tmp> alias mkdirhier='mkdir -p'
[EMAIL PROTECTED] /tmp> mkdirhier a/b/c
Hello,
I'd like to translate Firefox. I don't understand anything in Linux or
so, I just follow the documentation !
So, I have to execute the command :
MOZ_CO_PROJECT=browser make -f tools/l10n/l10n.mk create-eo
But cygwin writes :
[...]
/bin/sh: line 5: mkdirhier : command not found.
[...]
8 matches
Mail list logo