像这样的东西,但它不起作用:
原文链接:https://www.f2er.com/bash/384295.html```{r examples,engine="bash"} export EXAMPLES="example/path" ``` ```{r example1,engine="bash"} echo $EXAMPLES ```
但是,这有效:
```{r examples2,engine="bash"} export EXAMPLES="example/path" echo $EXAMPLES ```