Hello,
I have 101 wavs in /myfolder named foo_000.wav until foo_100.wav. I want to remove only the first 11 files, so I tried in om-shell:
“cd /myfolder && rm *{000…010}.wav”
but I got on the listener:
:: cd /myfolder && rm {000…010}.wav
:: rm: cannot remove '{000…010}.wav’: No such file or directory
OM => 1
also I tried:
“cd /myfolder && rm *[0-10].wav”
which is working but also erases other files (eg foo_011.wav) as expected.
The first command is working as expected on the terminal. How can I make it work with om-shell?
thanks & regards
rc
(ubuntu 20.04 & om 6.17)