https://github.com/JuliaLang/julia
Raw File
Tip revision: bbf9ba70ec80f0acd559e01b2004ad0e0fbc24b5 authored by Valentin Churavy on 23 December 2018, 01:00:13 UTC
add tapir indvars patch
Tip revision: bbf9ba7
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