16 lines
467 B
Bash
Executable file
16 lines
467 B
Bash
Executable file
#!/bin/bash
|
|
## Runnen van Rmd bestand
|
|
# -e betekent "evalueren" en -i specificeert de input file
|
|
Rscript --version
|
|
echo $PATH
|
|
#script_dir="$(dirname "$0")"
|
|
#echo $script_dir;
|
|
#/bin/ps aux | grep fontd
|
|
|
|
echo '\n'
|
|
|
|
echo 'zx28tb' | /usr/bin/sudo -S launchctl load -w /System/Library/LaunchAgents/com.apple.fontd.useragent.plist
|
|
cd /Users/mfolkerts/smartCane/r_app
|
|
Rscript -e "rmarkdown::render('/Users/mfolkerts/smartCane/r_app/CI_Report_dashboard_planet.Rmd', 'all')"
|
|
|