3 Star 0 Fork 0

Gitee 极速下载/javaslang

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/javaslang/javaslang
克隆/下载
update-copyright.sh 494 Bytes
一键复制 编辑 原始数据 按行查看 历史
Daniel Dietrich 提交于 2021-05-25 06:53 +08:00 . Happy new year ;) (#2670)
#!/bin/bash
# New-year script, tested on a Mac
# Prevent sed error 'illegal byte sequence'
export LC_ALL=C LC_CTYPE=C LANG=C
newYear=`date +'%Y'`
echo "Updating copyright notice to $newYear"
# Exclude specific directories: -type d \( -path ./.git -o -path ./.ide \) -prune -o
# Make sed work on Mac: sed -e
# Prevent making backups: -i ''
find . -type d \( -path ./.git -o -path ./gradle \) -prune -o -type f -print0 | xargs -0 sed -i '' -e "s/Copyright 2021 Vavr/Copyright $newYear Vavr/"
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/mirrors/javaslang.git
git@gitee.com:mirrors/javaslang.git
mirrors
javaslang
javaslang
backup

搜索帮助