https://github.com/JuliaLang/julia
Raw File
Tip revision: 2eb1adf2813d514773b31c85615c54a41971a525 authored by Valentin Churavy on 13 January 2020, 11:06:20 UTC
add init_fiber
Tip revision: 2eb1adf
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