#版权 #命令行工具 #开发工具 #许可证 #cli

app rz

rt 是一个命令行工具,可以将许可证文本添加到您的源代码文件中,以便您能专注于生产

6 个版本

0.1.5 2022年6月24日
0.1.4 2022年6月23日

#1673 in 命令行工具

MIT 许可证

17KB
303

©

rz

一个命令行工具,用于将许可证文本添加到您的源文件中,以便您能专注于生产



命令

名称

$ rz -n yourname 名称指定许可证中应显示的您的名字。如果未指定 name,它将插入 $USER 环境变量。

年份

$ rz -y 2022 指定许可证中应显示的年份。如果未指定 year,它将插入当前年份。

许可证

$ rz -l MIT 指定要插入文档中的许可证。使用常见的缩写,如 MITApache2

输入(必需)

$ rz -i sourcecode.ts 输入指定要附加许可证的前置文件。如果您已经有了代码,并只想在前面添加许可证,这很好。

输出

$ rz -i sourcecode.ts -o newsourcecode.ts 输出指定将许可证文件(包括任何通过 -i 指定的输入)写入的文件。如果没有提供,它就假设您想要用输出替换输入。

前缀行

$ rz -pl "// " 前缀行指定在输出中的每一行之前要添加的内容。想想您的源语言中特定的注释字符。

后缀行

$ rz -sl '-->' 后缀行指定在输出中的每一行之后要添加的内容。想想HTML注释的结束括号。 非常适合Markdown!

示例

// main.go
package main

import "fmt"

func main() {
    fmt.Println("Hello, World!")
}
$ rz -i main.go -pl "// " -l MIT -n "Your Name"
// Copyright ©2022 Your Name

// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

// THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

// main.go
package main

import "fmt"

func main() {
    fmt.Println("Hello, World!")
}

依赖关系

~1MB
~18K SLoC