I stumbled upon this line of code:
( cd ${TRASH_DIR} && rmdir 20* 2> /dev/null ) || :
The first expression is clear to me, but what is the meaning of the "else-Part": just ":
"? Mostly I see "|| exit 1
" in these cases, which is clear to me as well.
PS: Unfortunately I seem not to be able to google this character-combination without having a hint what it means...