Revision 8dd0256c5f382eb97c7f34be98d70cfa24e39162 authored by Keno Fischer on 23 April 2017, 02:48:12 UTC, committed by GitHub on 23 April 2017, 02:48:12 UTC
Improve code generation for homogenous tuples of unknown length
2 parent s d3f04eb + ed98595
Raw File
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