1 Star 0 Fork 0

jeady/OpenSSH-Win

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
fixalgorithms 422 Bytes
一键复制 编辑 原始数据 按行查看 历史
arif-pragmasys 提交于 2015-09-30 02:59 +08:00 . 7.1p1 original test files
#!/bin/sh
#
# fixciphers - remove unsupported ciphers from man pages.
# Usage: fixpaths /path/to/sed cipher1 [cipher2] <infile >outfile
#
# Author: Darren Tucker (dtucker at zip com.au). Placed in the public domain.
die() {
echo $*
exit -1
}
SED=$1
shift
for c in $*; do
subs="$subs -e /.Dq.$c.*$/d"
subs="$subs -e s/$c,//g"
done
# now remove any entirely empty lines
subs="$subs -e /^$/d"
${SED} $subs
exit 0
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jeady5/open-ssh-win.git
git@gitee.com:jeady5/open-ssh-win.git
jeady5
open-ssh-win
OpenSSH-Win
master

搜索帮助