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.
find /full/path/to/file.txt -size 100c -print
ls -l /full/path/ | grep 100
#!/usr/bin/ksh
filesizeflag="$(find /path/to/my/file.txt -size 100c -print)"
if [ -n $filesizeflag ];then
echo "file is correct size"
else
echo "file is wrong - please check"
fi