https://github.com/JuliaLang/julia
Raw File
Tip revision: 768b25f6a850bf68e4c6c85ede37c44b16c79625 authored by Alex Arslan on 18 August 2019, 00:04:33 UTC
Set VERSION to 1.3.0-rc1 (#32941)
Tip revision: 768b25f
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