dtluna 5 лет назад
Родитель a1be1a9c5e
Сommit a7972ed6c9
  1. 4
      README.md
  2. 11
      true/true.go

@ -5,3 +5,7 @@ suckless-style coreutils in go
The plan is to implement all the utilities from the
[sbase list](https://git.suckless.org/sbase/file/README.html)
with some additions
Implemeted utilities:
* `true`

@ -0,0 +1,11 @@
// true exits with a successful exit code (0)
package main
import (
"os"
)
func main() {
os.Exit(0)
}
Загрузка…
Отмена
Сохранить