tag     792733 + pending
thanks

I'm going for

# view/manipulate and export environment variables
setenv() {
        case $# in
        0) export ;;
        1) export "$1"= ;;
        *) export "$1"="$2" ;;
        esac
    }


I also made some other necessary changes to this file.

Reply via email to