This document provides tips for command line scripting in Perl 6. It discusses common command line switches like -e, -n, and -p. It explains that @*ARGS is an array of all arguments and $*ARGFILES treats arguments as file paths. MAIN subroutines can match signatures to arguments. Undocumented MAIN subs will output usage info generated from documentation tags. The document encourages using phasers, named argument parsing, and modules for larger scripts.