This website works better with JavaScript.
Explore
Help
Sign In
seasharp
/
go-coreutils
mirror of
http://git.dtluna.net/tomo/go-coreutils.git
Watch
1
Star
0
Fork
You've already forked go-coreutils
0
Code
Issues
Releases
Wiki
Activity
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8
Commits
5
Branches
0
Tags
26 KiB
Tag:
Branch:
Tree:
a562d6acdb
feature/env
feature/kill
feature/pwd
feature/rm
master
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from 'a562d6acdb'
${ noResults }
go-coreutils
/
false
/
false.go
12 lines
99 B
Raw
Normal View
History
Unescape
Escape
Add false
6 years ago
// false exits with an exit code of 1
package
main
import
(
"os"
)
func
main
(
)
{
os
.
Exit
(
1
)
}