#!/bin/sh# Find all the log files and loop through themfor file in `find $HOME -type f -name \*.log`; do # Get the file details ls -al $filedone