Skip to content

Instantly share code, notes, and snippets.

@scgilardi
scgilardi / asdf-update-all.sh
Created January 6, 2022 14:53
Script to install "latest" (or other "desired") version of all asdf plugins and make them "current"
#!/usr/bin/env bash
# adapted from:
# https://gist.github.com/developer-guy/4de4e2ff2eaa31633a0fef719c92eada
# 2021-12-18
function update() {
asdf update > /dev/null 2>&1
echo asdf `asdf --version`
for i in `asdf plugin list`; do