https://github.com/JuliaLang/julia
Raw File
Tip revision: ac49911bdb60feadcec7accca477d2146e713c11 authored by Jeff Bezanson on 15 November 2018, 02:30:31 UTC
WIP fix #29501, type intersection involving Union parameters
Tip revision: ac49911
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