https://github.com/JuliaLang/julia
Raw File
Tip revision: 793f8756a094b0451a5211f4d199a0ddbaa814c9 authored by Keno Fischer on 09 December 2020, 04:37:39 UTC
Don't accidentally skip over pointers in count_const_size
Tip revision: 793f875
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