https://github.com/JuliaLang/julia
Raw File
Tip revision: f94fb4083f7b729707e09540bd5be8e218712c1d authored by Tim Besard on 11 July 2019, 15:17:12 UTC
Optimized tridiagonal matrix solver.
Tip revision: f94fb40
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