In the following code,I want to exclude files in the range FROM TO ;
eg
FROM=AAABBBC
TO=AAABBBH
for file in ls
do
if [[ $file >= FROM && $file <= $TO ]]
then
ignore
else
process
fi
done
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.