cat(1) clone in Swift
Switch branches/tags
Nothing to show
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
swcat.xcodeproj
swcat
.gitignore
LICENSE
README.md

README.md

swcat

cat(1) partial clone in Swift.

Currently supports reading from stdin and writing to stdout with no arguments given, or reading filenames from given arguments.

Usage

Reading stdin to stdout:

$ echo "hi" | swcat
hi

Reading multiple files, including ones that don't exist:

$ swcat bling.txt count.txt
swcat: bling.txt: No such file or directory
1
2
3
4
5

License

$ swcat LICENSE