SwiftOS

SwiftOS is an OS built unapologetically for and with Swift. It is safe, fast and expressive and has all the qualities that make Swift so

Imagine getting all the qualities of Swift into an OS! That’s what it is. Safe. Fast. Expressive. And with swsh, it has an amazing shell already built-in.

Shells

SwiftOS comes with swsh, zsh and sh built in. zsh is the default shell, swsh is a powerful shell to mix UNIX commands and Swift constructs.

For example, you can say:

% ls("/tmp") // commands are functions bts
% ls /tmp    # This is also possible
% await download("https://apple.com") | save("/tmp/site.html") // await on a whole new level