This is the opposite of the clobber / noclobber function. I only want to update the file if it already exists. I know I can do this with a few commands, but does he have one statement?
I RTFMed and operator does not exist yet.
Closest I can think of [[ -f "$filename" ]] && do something > "$filename"
[[ -f "$filename" ]] && do something > "$filename"