Re: [Fish-users] Wildcard-like for loop operator

2023-05-24 Thread Tadhg O'Brien
The first thing that springs to mind is `fd ` available on almost all package managers which would enable you to write, independently of which shell you are running: ``` fd -e gpg -x gpg --verify {} ``` i.e.: `-e gpg` : find all files with extension `gpg` `-x gpg --v

[Fish-users] Wildcard-like for loop operator

2023-05-23 Thread Bobby
There is a syntactic sugar feature I have wanted for my shell since I first started using one, and I'm wondering if it's possible in fish or anyone has ideas for implementing it. Basically, it would be really nice to be able to write an implicit for loop the way one would use the wildcard opera