Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: Command != command ???
- X-seq: zsh-users 9147
- From: Bart Schaefer <schaefer@xxxxxxxxxxxxxxxx>
- To: zsh-users@xxxxxxxxxx
- Subject: Re: Command != command ???
- Date: Sun, 24 Jul 2005 23:22:21 +0000
- In-reply-to: <87r7dnsvjn.fsf@xxxxxxxxxxxxxxxx>
- Mailing-list: contact zsh-users-help@xxxxxxxxxx; run by ezmlm
- References: <20050724.074251.74755659.Meino.Cramer@xxxxxx> <87r7dnsvjn.fsf@xxxxxxxxxxxxxxxx>
On Jul 24, 3:12pm, Philippe Troin wrote:
} Subject: Re: Command != command ???
}
} Meino Christian Cramer <Meino.Cramer@xxxxxx> writes:
}
} > ./mkexif.sh:7: no matches found: **/*.jpg
}
} You setopt extendglob in your zshrc, which is not sourced for your
} script.
Good guess, but extendedglob is not required for **/ to work.
More likely is that there is a "cd" command in some startup file
that the script *does* read, such as ~/.zshenv.
Try changing the script to start with
#!/bin/zsh -x
so you can see a trace of the commands that it is executing. Remove
the -x again after you fix whatever is wrong, of course.
Messages sorted by:
Reverse Date,
Date,
Thread,
Author