Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 602 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 602 Bytes

goc2l

light-well cli Cyrillic translator for web (utf8). Part of OwnCDN utils

Install

go install github.com/gadost/goc2l

Usage

$ goc2l "какое-то название файла.mp4"

kakoe_to_nazvanie_fayla.mp4

As module

import (
    "fmt"
    "github.com/gadost/goc2l"
)

func main() {
    goc2l.Print("какое-то название файла.mp4")
    x := goc2l.Convert("какое-то название файла.mp4")
    y := goc2l.ConvertWithSpecials("какое-то название файла.mp4")
    fmt.Println(x)
    fmt.Println(y)
}