8 lines
188 B
Bash
Executable File
8 lines
188 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
repo_root="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd -P)"
|
|
cd "$repo_root"
|
|
|
|
Rscript -e 'setwd("data"); source("../src/r/00_data-management.R")'
|