Hi, Patrick Dupre wrote: > Sorry, I am a bit of list > This command line works in a shell, but not in a bash > I may miss some quotes ! > Thanks for your help. > > /usr/bin/rm -v !(ZMAT*|out*|Out*|GENBAS|Note*) The !(ZMAT*|...) syntax requires the bash extglob option. This must be explicitly enabled in a non-interactive session (like a script). For example: #!/bin/bash shopt -s extglob /usr/bin/rm -v !(ZMAT*|out*|Out*|GENBAS|Note*) -- Todd
Attachment:
signature.asc
Description: PGP signature
_______________________________________________ users mailing list -- users@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe send an email to users-leave@xxxxxxxxxxxxxxxxxxxxxxx Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@xxxxxxxxxxxxxxxxxxxxxxx Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure