https://github.com/JuliaLang/julia
Raw File
Tip revision: f8581fdf0b7dab6e5c3affa2c98131c4f4a6a5af authored by Jameson Nash on 10 October 2018, 20:25:40 UTC
code show: thread debuginfo verbosity parameter throughout APIs
Tip revision: f8581fd
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