├── LICENSE ├── README.md ├── cat └── aporcupine │ └── cat │ └── main.go ├── false └── sferrellaa │ └── false │ └── main.go ├── ls └── telegrammae │ └── ls │ └── main.go ├── mkdir ├── lucassha │ └── mkdir │ │ ├── mkdir.go │ │ └── mkdir_test.go └── telegrammae │ └── mkdir │ └── main.go ├── pwd └── sferrellaa │ └── pwd │ └── main.go ├── rm └── aporcupine │ └── rm │ └── main.go ├── tree └── lucassha │ └── tree │ └── main.go ├── true └── sferrellaa │ └── true │ └── main.go ├── whoami └── aporcupine │ └── whoami │ └── main.go └── yes └── aporcupine └── yes └── main.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporcupine/GoUnix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporcupine/GoUnix/HEAD/README.md -------------------------------------------------------------------------------- /cat/aporcupine/cat/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporcupine/GoUnix/HEAD/cat/aporcupine/cat/main.go -------------------------------------------------------------------------------- /false/sferrellaa/false/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporcupine/GoUnix/HEAD/false/sferrellaa/false/main.go -------------------------------------------------------------------------------- /ls/telegrammae/ls/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporcupine/GoUnix/HEAD/ls/telegrammae/ls/main.go -------------------------------------------------------------------------------- /mkdir/lucassha/mkdir/mkdir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporcupine/GoUnix/HEAD/mkdir/lucassha/mkdir/mkdir.go -------------------------------------------------------------------------------- /mkdir/lucassha/mkdir/mkdir_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporcupine/GoUnix/HEAD/mkdir/lucassha/mkdir/mkdir_test.go -------------------------------------------------------------------------------- /mkdir/telegrammae/mkdir/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporcupine/GoUnix/HEAD/mkdir/telegrammae/mkdir/main.go -------------------------------------------------------------------------------- /pwd/sferrellaa/pwd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporcupine/GoUnix/HEAD/pwd/sferrellaa/pwd/main.go -------------------------------------------------------------------------------- /rm/aporcupine/rm/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporcupine/GoUnix/HEAD/rm/aporcupine/rm/main.go -------------------------------------------------------------------------------- /tree/lucassha/tree/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporcupine/GoUnix/HEAD/tree/lucassha/tree/main.go -------------------------------------------------------------------------------- /true/sferrellaa/true/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporcupine/GoUnix/HEAD/true/sferrellaa/true/main.go -------------------------------------------------------------------------------- /whoami/aporcupine/whoami/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporcupine/GoUnix/HEAD/whoami/aporcupine/whoami/main.go -------------------------------------------------------------------------------- /yes/aporcupine/yes/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporcupine/GoUnix/HEAD/yes/aporcupine/yes/main.go --------------------------------------------------------------------------------