This repository has been archived on 2025-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
bscpkgs/garlic/sh/fix-figure-subtitle.sh

7 lines
215 B
Bash
Executable File

#!/bin/sh
if grep -q 'output = args[2]' "$1"; then exit 0; fi
sed '/length(args)>0/aif (length(args)>1) { output = args[2] } else { output = "?" }' -i "$1"
sed '/jsonlite::flatten/,$s/input_file/output/g' -i "$1"