I'm trying to run 'cat *.x' only if *.x files exist. What is the
cleanest way of doing this? I'm doing it by
shopt -s nullglob
for i in *.x; do cat $i; done
but this is aweful typing.
--
No, I will not fix your computer! I'll reformat your harddisk, though.