## Usage ### Rad binary ```bash # Usage : rad [OPTIONS] [FILE]... # Read from file and save to file rad input_file.txt -o out_file.txt # Read from file and print to stdout rad input_file.txt # Read from standard input and print to file printf 'text' | rad -o out_file.txt # Read from stdin and print to stdout printf 'text' | rad # Print simple manual rad --man rad --man ifdef # Use comment in input texts # Comment character is '%' # Refer macro_syntax for further information rad --comment rad --comment any # Some macros need permission to process # use following options to grant permission. # Permission argument is case insensitive -a env # Give environment permission -a cmd # Give syscmd permission -a fin+fout # give both file read and file write permission -A # Give all permission. this is same with '-a env+cmd+fin+fout' -w env # Give permission but warn when macro is used -W # Same with '-A' but for warning # Use following options to decide error behaviours # default is stderr -e, --err # Log error to -s, --silent