https://github.com/JuliaLang/julia
Raw File
Tip revision: 7faee1b201714c9029f66f0bb65a6401ccf4d1f9 authored by Jameson Nash on 30 May 2018, 20:00:03 UTC
gc: make pool counters lazier
Tip revision: 7faee1b
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