1
0
mirror of http://git.dtluna.net/tomo/go-coreutils.git synced 2025-01-07 06:29:52 +00:00
This commit is contained in:
dtluna 2019-03-26 12:05:35 +03:00
parent a1be1a9c5e
commit a7972ed6c9
2 changed files with 15 additions and 0 deletions

View File

@ -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`

11
true/true.go Normal file
View File

@ -0,0 +1,11 @@
// true exits with a successful exit code (0)
package main
import (
"os"
)
func main() {
os.Exit(0)
}