LinearArray to Programmer [email protected]English • 1 year agoMy wife was unimpressed by Vimprogramming.devimagemessage-square185fedilinkarrow-up1967arrow-down119
arrow-up1948arrow-down1imageMy wife was unimpressed by Vimprogramming.devLinearArray to Programmer [email protected]English • 1 year agomessage-square185fedilink
minus-square@[email protected]linkfedilink4•edit-21 year agoBased nano user From my .zshrc (typing this on mobile so cope if it’s wrong) case "$OSTYPE" in linux*) export EDITOR=nano ;; freebsd*) export EDITOR=ee ;;
minus-square@[email protected]linkfedilink2•1 year agoI guess shell languages can’t do this: export EDITOR=case "$OSTYPE" in linux*) nano ;; freebsd*) ee ;;
minus-square@[email protected]linkfedilink2•edit-21 year agoThat would be too smart. Smells like kotlin’s when
minus-square@[email protected]linkfedilink2•1 year agoPut backticks around the entire case statement, and you can.
Based nano user
From my .zshrc (typing this on mobile so cope if it’s wrong)
case "$OSTYPE" in linux*) export EDITOR=nano ;; freebsd*) export EDITOR=ee ;;
I guess shell languages can’t do this:
export EDITOR=case "$OSTYPE" in linux*) nano ;; freebsd*) ee ;;
That would be too smart. Smells like kotlin’s when
Put backticks around the entire case statement, and you can.