User:Minooz/RepoSyncProj/Bash
< User:Minooz | RepoSyncProj
Bash Scripting Help
Tips
- Watch the spaces
if [ -d "$tmpInternal" ]; then
rm -r $tmpInternal >> $dateError.txt
elif [ -d "$tmpExternal" ]; then
rm -r $tmExternal >> $dateError.txt
fi
- The increment operator in bash
while [ $revTmpInternal -lt $revInternal ]; do
((revTmpInternal++))
done
- to check if a file exists: (when using wild cards, if you don't use double quotes, there will be this error: "binary operator expected")
if [ -f "*.patch" ]; then
rm *.patch
fi