Updated: 04 October 2025
Read from standard input and write to standard output and files.
Find, from the root, all directories with ‘vim’ in their name. Send all non-error output simultaneously to std-out and a file
find / -type d -iname '*vim*' 2> /dev/null | tee find-results.txt