17 lines
287 B
Bash
Executable File
17 lines
287 B
Bash
Executable File
#!/bin/zsh
|
|
|
|
# likely on unix systems already: find xargs grep sed awk
|
|
${=BOX_SETUP_INSTALL_COMMAND} \
|
|
curl \
|
|
jq \
|
|
parallel \
|
|
fzf \
|
|
make \
|
|
cmake \
|
|
gettext \
|
|
grep \
|
|
ripgrep
|
|
|
|
[[ "$BOX_SETUP_OS" = "macos" ]] &&
|
|
${=BOX_SETUP_INSTALL_COMMAND} coreutils
|