catala/runtimes/r/format_r_file.sh
2023-08-05 13:05:31 +02:00

6 lines
200 B
Bash
Executable File

#! /bin/bash
temp=$(mktemp)
(Rscript -e "options(styler.colored_print.vertical=FALSE); con <- file('stdin'); out <- styler::style_text(readLines(con)); close(con); out" < $1) > $temp
cat $temp > $1