POKI_PUT_TOC_HERE
Suppose you always use CSV files. Then instead of always having to type --csv as in
POKI_CARDIFY(mlr --csv cut -x -f extra mydata.csv)HERE POKI_CARDIFY(mlr --csv sort -n id mydata.csv)HEREand so on, you can instead put the following into your $HOME/.mlrrc:
POKI_CARDIFY(--csv)HEREThen you can just type things like
POKI_CARDIFY(mlr cut -x -f extra mydata.csv)HERE POKI_CARDIFY(mlr sort -n id mydata.csv)HEREand the --csv part will automatically be understood. (If you do want to process, say, a JSON file then mlr --json ... at the command line will override the default from your .mlrrc.)
Here is an example .mlrrc file: POKI_INCLUDE_ESCAPED(sample_mlrrc)HERE