1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2026-01-24 08:58:01 +01:00
GTFOBins.github.io/_gtfobins/yarn.md
Andrea Cardaci fd476e08c2 Update yarn and npm shells
Mention an additional way to run scripts as suggested in #224.
2021-06-22 22:11:05 +02:00

13 lines
403 B
Markdown

---
functions:
shell:
- code: yarn exec /bin/sh
- description: Additionally, arbitrary script names can be used in place of `preinstall` and triggered by name with, e.g., `yarn --cwd $TF run preinstall`.
code: |
TF=$(mktemp -d)
echo '{"scripts": {"preinstall": "/bin/sh"}}' > $TF/package.json
yarn --cwd $TF install
sudo:
- code: sudo yarn exec /bin/sh
---