https://github.com/JuliaLang/julia
Raw File
Tip revision: d634205f2ff5c0e4d351cf7d7dd4b80cf973cd5a authored by Fredrik Ekre on 19 August 2020, 10:59:49 UTC
WIP default depwarn.
Tip revision: d634205
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