Revision d4d015664fa1a42285d206791a7bf2dd788f4f4e authored by toivoh on 01 March 2016, 18:08:35 UTC, committed by Tony Kelman on 13 March 2016, 23:46:30 UTC
They are still given to the user in macro arguments,
otherwise LineNumberNode seems to be used consistently.

(cherry picked from commit 3a16b19eb6c03a89d58a92d7623e60a83b21c3d8)
ref #15309
1 parent 6fffa59
Raw File
filterArgs.sh
#!/bin/sh
# This file is a part of Julia. License is MIT: http://julialang.org/license

# Loop over all command line arguments
for i in "$@"; do
    # If an argument starts with -L, echo it out sans -L!
    if [[ $i == -L* ]]; then
        echo "\"${i:2:${#i}}\""
    fi
done
back to top