https://github.com/JuliaLang/julia
Raw File
Tip revision: 2f78e6a192bef2552f715f11f7f11ffa01b434ac authored by Fredrik Ekre on 04 July 2019, 10:55:40 UTC
Use repr on the environment variable values in versioninfo().
Tip revision: 2f78e6a
filterArgs.sh
#!/bin/sh
# This file is a part of Julia. License is MIT: https://julialang.org/license

# Loop over all command line arguments
for i in "$@"; do
    # If an argument starts with -L, echo it out sans -L!
    case $i in
    -L*) printf '"%s"\n' "${i#-L}" ;;
    esac
done
back to top