I would like to find all NON read-only files in my directory using cygwin's find command.
Is it possible ?
I would like to find all NON read-only files in my directory using cygwin's find command.
Is it possible ?
Is there a way to make the file/dir auto-complete in bash case insensitive?
For example I would like to write:
/opt/ibm/whatever/test
[TAB]
And bash will auto-complete it to:
/opt/IBM/Whatever/TESTfile
Or at least only the last part of test
to TESTfile
.
I know that filesystems are case-sensitive, I just don't want to remember which parts are UPPER-case, I want auto-complete to fix the path for me.
And if I have both TESTfile
and testfile
, just show me both of them like bash does today with auto-complete conflicts.