#!/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 "$@" { # If an argument starts with -L, echo it out sans -L! case (i) { -L* { printf '"%s"\n' ${i#-L} } } }