Python LSF (ls + find) Program
Have you ever needed to search through your directories looking for files that match certain criteria? As a system administrator, I found myself doing this often and would usually use the unix find command to generate the list of matching files and then pipe that into an ls -l command to get the info I needed for each file. I found the syntax of the find command to be very unorthodox and hard to remember. The lsf.py python script is an attempt to create a super-charged version of the basic ls command that adds options to control which files are included in the output.