Wait what?! We want to call arbitrary commandline tools from within Swift, like so:

for file in shell.ls("/Users/").split(separator: "\n") {
    print("dir:", file)
}

Source: @dynamicCallable: Unix Tools as Swift Functions – The Always Right Institute – Almost always sometimes definitely right.