https://github.com/JuliaLang/julia
Raw File
Tip revision: 0878f84345017fdb5f787c06122903e36b2815bc authored by Chris Foster on 28 May 2019, 22:40:36 UTC
Temporary notes about the frontend functions
Tip revision: 0878f84
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