bb/tool/sort/sort.go
2023-12-14 21:42:01 +03:00

18 lines
248 B
Go

package sort
import (
"fmt"
"os"
"sort"
"github.com/di4f/bb/input"
"github.com/di4f/cli/mtool"
)
func Run(flagSet *mtool.Flags) {
lines, _ := input.ReadAllLines(os.Stdin)
sort.Strings(lines)
for _, l := range lines {
fmt.Print(l)
}
}