feature/pwd
dtluna 5 年之前
父節點 a1be1a9c5e
當前提交 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)
}
Loading…
取消
儲存