mirror of
https://github.com/zellyn/diskii.git
synced 2024-11-21 23:31:47 +00:00
27 lines
690 B
Go
27 lines
690 B
Go
// Copyright © 2016 Zellyn Hunter <zellyn@gmail.com>
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"text/tabwriter"
|
|
|
|
"github.com/zellyn/diskii/types"
|
|
)
|
|
|
|
type FiletypesCmd struct {
|
|
All bool `kong:"help='Display all types, including SOS types and reserved ranges.'"`
|
|
}
|
|
|
|
func (f *FiletypesCmd) Run(globals *types.Globals) error {
|
|
w := tabwriter.NewWriter(os.Stdout, 0, 0, 1, ' ', 0)
|
|
fmt.Fprintln(w, "Description\tName\tThree-letter Name\tOne-letter Name")
|
|
fmt.Fprintln(w, "-----------\t----\t-----------------\t---------------")
|
|
for _, typ := range types.FiletypeInfos(f.All) {
|
|
fmt.Fprintf(w, "%s\t%s\t%s\t%s\n", typ.Desc, typ.Name, typ.ThreeLetter, typ.OneLetter)
|
|
}
|
|
w.Flush()
|
|
return nil
|
|
}
|