| Newsgroups |
gmane.editors.sed.user |
| Message-ID |
<[email protected]> |
On 19Jan2016 01:12, JASON DIMAGIBA <[email protected]> wrote:
>On Monday, January 18, 2016 4:26 PM, "Sven Guckes [email protected] [sed-users]" <[email protected]> wrote:
>> i like the really short notation of the zsh:
>> zsh> ls -l **/*(.W)
>
>thanks for responding...pretty cool -I'm using bash not zsh though...apparently that won't work on my shell:
>bash: syntax error near unexpected toke
Nothing prevents yu writing a small script:
#!/bin/zsh
ls -l **/*(.W)
and using it. Bash is not the world you know, and your interactive shell does
not restrict what you can use.
Cheers,
Cameron Simpson <[email protected]>