You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

31 lines
361 B

#!/bin/zsh
set -e
GAL_PROMPT_PREFIX='\e[34m✡ \e[0m'
function type() {
printf $GAL_PROMPT_PREFIX
echo $* | pv -qL $[10+(-2 + RANDOM%5)]
}
type 'eval `fnm env`'
eval `fnm env`
type 'fnm --version'
fnm --version
type 'cat .node-version'
cat .node-version
type 'fnm install'
fnm install
type 'fnm use'
fnm use
type 'node -v'
node -v
sleep 2
echo ""