Cloned the cat command using Ruby
$ bin/cat [options] [file ...]
$ bin/cat tests/example.txt
$ bin/cat -n tests/example.txt
$ bin/cat -b tests/example.txt
$ bin/cat -s tests/example.txt-n: number all output lines-b: number non-blank output lines (-nより優先)-s: squeeze multiple adjacent blank lines into one
-E/--show-ends-T/--show-tabs-v(display non-printing)-u(disable output buffering)
$ ruby tests/cat.rb$ bundle install
$ bundle exec steep check