Re: [Fish-users] Yet another * issue

2020-08-31 Thread Kurtis Rader
On Mon, Aug 31, 2020 at 11:13 AM John Chludzinski < john.chludzin...@gmail.com> wrote: > Whereas, I’ve haven’t had time to try again to duplicate the ‘rm’ problem, > I have encountered yet another * “issue”: > > I tried: > > ls > ./a10_soc_devkit_ghrd/software/bootloader/u-boot-socfpga/arch/arm/dt

Re: [Fish-users] Yet another * issue

2020-08-31 Thread Robert O.
The apostrophes usually mean, pass whatever’s in-between as a raw string. I am not sure if this is true in this case, but my guess is that this command is literally looking for *10* in the filename. Removing the apostrophes should fix your issue, though I am not sure what filenames look like in

Re: [Fish-users] Yet another * issue

2020-08-31 Thread Kurtis Rader
On Mon, Aug 31, 2020 at 12:08 PM John Chludzinski < john.chludzin...@gmail.com> wrote: > Well, how should I accomplish what I’ve been trying to do with ‘*’ ? > If the wildcard might expand to nothing the usual solution is to use the `set` command: set files ./a10_soc_devkit_ghrd/software/bootloa

Re: [Fish-users] Yet another * issue

2020-08-31 Thread John Chludzinski
Well, how should I accomplish what I’ve been trying to do with ‘*’ ? On Mon, Aug 31, 2020 at 14:38 Kurtis Rader wrote: > On Mon, Aug 31, 2020 at 11:13 AM John Chludzinski < > john.chludzin...@gmail.com> wrote: > >> Whereas, I’ve haven’t had time to try again to duplicate the ‘rm’ >> problem, I h

Re: [Fish-users] Yet another * issue

2020-08-31 Thread Greg Reagle
Why are you quoting the asterisk? That won't work on any shell. On Mon, Aug 31, 2020, at 14:13, John Chludzinski wrote: > Whereas, I’ve haven’t had time to try again to duplicate the ‘rm’ problem, I > have encountered yet another * “issue”: > > I tried: > > ls > ./a10_soc_devkit_ghrd/software

[Fish-users] Yet another * issue

2020-08-31 Thread John Chludzinski
Whereas, I’ve haven’t had time to try again to duplicate the ‘rm’ problem, I have encountered yet another * “issue”: I tried: ls ./a10_soc_devkit_ghrd/software/bootloader/u-boot-socfpga/arch/arm/dts/'*10*' and ls './a10_soc_devkit_ghrd/software/bootloader/u-boot-socfpga/arch/arm/dts/*10*' and