locate "*.png"
restituisce tutti i file che terminano con .png
, come previsto.
locate "test.*"
non restituisce nulla, ma ci sono file nominati test
nel mio sistema.
locate "*test"
restituisce tutti i file che terminano con test
, come previsto.
locate "test*"
non restituisce nulla, ma ci sono file che iniziano con test
nel mio sistema.
Perché i caratteri jolly sembrano funzionare solo per "terminare con"?
test*
etest.*
?