Filedot 2021 | Ls
cat ~/.bash_history | grep "ls filedot"
| If you wanted... | You probably meant... | |----------------|------------------------| | List dotfiles (hidden files) | ls -la or ls -ld .* | | List files containing "dot" from 2021 | ls -l | grep dot | grep 2021 | | List files with a specific extension | ls *.txt or ls filedot.* | | Find files modified in 2021 | find . -newerBt 2021-01-01 ! -newerBt 2022-01-01 -ls | ls filedot 2021