To estract a single .Z file from a given folder I use uncompress file.Z
in a terminal and it works flawlessy. If, in the same folder, I want to extract all the .Z files I use uncompress "*.Z"
or uncompress '*.Z'
or uncompress \*.Z
. But they all give the same error:
`gzip: *.Z: No such file or directory`
Same story if I use the "extended" extension proper of each file, that is file.fitz.Z
.
How do I uncompress all the .Z files? What is going wrong?