Comment

#Breitbart.com Desperately Spinning Romney's Jerusalem Speech

37
Charles Johnson7/30/2012 2:57:46 pm PDT

And by the way, a cool technique for checking to see if a directory contains any files and read a list of those files for further processing, in one move:

if FILES=$(ls *.css 2> /dev/null); then
	for NAME in $FILES; do
		echo -e "${NAME}"
	done
fi