20 lines
458 B
Plaintext
20 lines
458 B
Plaintext
* antifetch
|
|
A silly reimplementation of nofetch(1) from posix-sh-tools in Go
|
|
Where most information is provided by yourself!
|
|
|
|
i.e. OS (operating system), ARCH (architecture), and HOST (hostname)
|
|
|
|
```
|
|
ARCH=$(uname -m) HOST=$(hostname) OS=$(uname) go run main.go
|
|
Should output something like this example:
|
|
|
|
User: akoizumi
|
|
Editor: emacsclient -q -u -c -t
|
|
Operating System: FreeBSD
|
|
Architecture: amd64
|
|
Hostname: mizuki
|
|
Shell: /bin/sh
|
|
|
|
```
|
|
|
|
Licensed under DPL-1.1 |