9
rated 0 times
[
9]
[
0]
/ answers: 1 / hits: 8485
/ 2 Years ago, fri, march 18, 2022, 2:02:14
I have a lot of directories on my system, with a structure looking like this:
-----data
------- 001abc
------- 002abc
------- 003abc
------- 004abc
------- 005abc
....
When I want find a certain directory, I just type find . -iname "002abc*"
but how can I find a directory excluding certain name matches?
Something like this in MySQL select * from folder where filename != '0021bc'
More From » bash