find . -name 'filename*' | xargs sed -i '$a springfox.documentation.enabled=false'
由於 $ 代表的是最后一行,而 a 的动作是新增,因此该文件最后新增 springfox.documentation.enabled=false
sed 的 -i 选项可以直接修改文件内容,这功能非常有帮助
标签:文件,springfox,false,documentation,enabled,一行,添加,sed,文本 From: https://www.cnblogs.com/morninglight/p/16962363.html