How to display the filenames with 4 or more characters using the ls command
1 Answer
Use wildcards (they're not regexps):
ls -A -d ????*That's 4 "any characters" followed by "any number of any characters". man ls.
How to display the filenames with 4 or more characters using the ls command
Use wildcards (they're not regexps):
ls -A -d ????*That's 4 "any characters" followed by "any number of any characters". man ls.