For example if the dir command produces something like this:
> dir
file1.txt
file2.txt
another file3.txt
another file4.txt
I want to be able to filter all file names that start with the letter 'f'. Any ideas?
I've tried the following command but that returns ALL file names with an 'f' anywhere in the name:
>dir | find "f"
file1.txt
file2.txt
another file3.txt
another file4.txt
Unless I've missed something, the documentation here doesn't say how to do this.