/tamacat

Python で cat コマンドを雑に実装。

Primary LanguagePythonMIT LicenseMIT

tamacat

Python で cat コマンドを雑に実装。

インストール

pip install git+https://github.com/ttk1/tamacat.git

# もしくは
git clone https://github.com/ttk1/tamacat.git
cd tamacat
pip install .

使い方

ファイル一つ

$ echo 'hello!' > hoge
$ tamacat hoge
hello!

ファイル複数

$ echo 'hello!' > hoge2
$ tamacat hoge*
hello!
hello!

標準出力

$ echo 'hello!' | tamacat
hello!

help

tamacat -h