├── README.md ├── gh-ost └── screenshot.png /README.md: -------------------------------------------------------------------------------- 1 | # gh ost 2 | 3 | A [gh](https://github.com/cli/cli) extension to meet ghost. 4 | 5 | ## Usage 6 | 7 | ```sh 8 | gh ost 9 | ``` 10 | 11 | ## Installation 12 | 13 | ```sh 14 | gh extension install mattn/gh-ost 15 | ``` 16 | 17 | ## Screenshot 18 | 19 | ![Screenshot](https://raw.githubusercontent.com/mattn/gh-ost/main/screenshot.png) 20 | 21 | ## License 22 | 23 | MIT 24 | 25 | ## Author 26 | 27 | Yasuhiro Matsumoto (a.k.a. mattn) 28 | -------------------------------------------------------------------------------- /gh-ost: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | cat <<'EOF' 5 | .-. 6 | (o o) boo! 7 | | O \ 8 | \ \ 9 | `~~~' 10 | EOF 11 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/gh-ost/7f4381fbad5741c87750cc95f3813e70b0d3d04c/screenshot.png --------------------------------------------------------------------------------