in reply to how to escape ' character
# these are not escaped print "'"; print qq('); print q('); print <<ENDLINE; some line with a ' in it ENDLINE # this one is escaped print '\''; [download]