https://github.com/JuliaLang/julia
Raw File
Tip revision: 4d969fa2826691c6c0a5325d3e43e39e5fc1f809 authored by Yichao Yu on 12 December 2015, 19:46:39 UTC
Check if dmesg has any useful info about the io error
Tip revision: 4d969fa
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