Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
ls -idl /usr1 /usr1/log/.KSQmEa
#!/bin/ksh
FILELIST=/a/directory/and/a/file
rm ${FILELIST} 2>/dev/null
# first process the top level of the /usr1 directory, excluding the logs subdir
cd /usr1
ls | grep -v "^log$" while read FDNAME
do
find /usr1/${FDNAME} -type f >> ${FILELIST}
done
# second process the log directory, skipping the offending directory
cd /usr1/log
ls | grep -v "^\.KSQmEa$" | while read FDNAME
do
find /usr1/log/${FDNAME} -type f >> ${FILELIST}
done