Command line client for Write.as https://write.as/apps/cli
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

14 行
206 B

  1. // Package executable holds utility functions that assist both CLI executables,
  2. // writeas and wf.
  3. package executable
  4. import (
  5. "os"
  6. "path"
  7. )
  8. func Name() string {
  9. n := os.Args[0]
  10. return path.Base(n)
  11. }