wildcard expansion after escaping
Created by: aeosynth
# touch 'f x' 'f y'
# rm f\ *
rm: cannot remove ' *': No such file or directory
rm: cannot remove 'f': No such file or directory
# rm f*
Created by: aeosynth
# touch 'f x' 'f y'
# rm f\ *
rm: cannot remove ' *': No such file or directory
rm: cannot remove 'f': No such file or directory
# rm f*