45 lines
1.1 KiB
Go
45 lines
1.1 KiB
Go
/*
|
|
Copyright © 2022 NAME HERE <EMAIL ADDRESS>
|
|
|
|
*/
|
|
package info
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/ricochet2200/go-disk-usage/du"
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
// diskUsageCmd represents the diskUsage command
|
|
var diskUsageCmd = &cobra.Command{
|
|
Use: "diskUsage",
|
|
Short: "Prints disk usage of the current directory",
|
|
Long: ``,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
|
|
defaultDirectory := "."
|
|
if dir := viper.GetViper().GetString("cmd.info.diskUsage.defaultDirectory"); dir != "" {
|
|
defaultDirectory = dir
|
|
}
|
|
usage := du.NewDiskUsage(defaultDirectory)
|
|
|
|
fmt.Printf("Free disk space:%d in directory %s\n", usage.Free(), defaultDirectory)
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
InfoCmd.AddCommand(diskUsageCmd)
|
|
|
|
// Here you will define your flags and configuration settings.
|
|
|
|
// Cobra supports Persistent Flags which will work for this command
|
|
// and all subcommands, e.g.:
|
|
// diskUsageCmd.PersistentFlags().String("foo", "", "A help for foo")
|
|
|
|
// Cobra supports local flags which will only run when this command
|
|
// is called directly, e.g.:
|
|
// diskUsageCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
|
|
}
|