Skip to content

Commit

Permalink
A: v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
awesee committed Jan 18, 2021
1 parent f7342ba commit e4f0f8a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,20 @@ import (
"log"
"os"
"path/filepath"
"runtime"
"strings"

"github.com/360EntSecGroup-Skylar/excelize/v2"
)

const VERSION = "0.2.0"
const VERSION = "0.2.1"

func main() {
args := os.Args
cmd := filepath.Base(args[0])
if len(args) < 2 {
fmt.Printf("Usage: %s file.csv|file.xlsx...\n", cmd)
fmt.Printf("%s version %s %s/%s\n\n", cmd, VERSION, runtime.GOOS, runtime.GOARCH)
fmt.Printf("usage:\n\t%s file.csv|file.xlsx...\n", cmd)
return
}
for _, filename := range args[1:] {
Expand Down

0 comments on commit e4f0f8a

Please sign in to comment.