manlink
来自「This a good VPN source」· 代码 · 共 72 行
TXT
72 行
#! /bin/sh## $Id: manlink,v 1.8 2002/09/17 20:17:16 sam Exp $## make list of alternate names for manpagesPATH=/bin:/usr/bin ; export PATHusage="$0 manpage ..."for mdo bm=`basename $m` if test ! -f $m then echo "$0: cannot find \`$m'" >&2 exit 1 fi suf=$(expr $bm : '.*\([.][^.][^.]*\)$') # a .\"+ line rules them=$(awk '/^\.\\"\+[ ]/ { for (i = 2; i <= NF; i++) print $i }' $m) # otherwise, try to intuit the list of names from the NAME section if test " $them" = " " then them=$( awk '/^\.SH[ \t]+NAME/,/^\.SH[ \t]+[^N]/' $m | egrep -v '^\.' | tr ' ,' ' ' | sed -n '/ *\\*- *.*/s///p' | tr -s ' ' '\012' | egrep -v '^ipsec$' ) fi # do it for f in $them do case $f in ipsec*) ff="$f" ;; # ipsec.8, ipsec.conf.5, etc. *) ff="ipsec_$f" ;; esac case $ff in *.[1-8]) ;; *) ff="$ff$suf" ;; esac #echo "Q: $bm FF: $ff" >&2 if [ " $ff" != " $bm" ] && [ " $ff" != " ipsec_$bm" ] then echo $bm $ff fi donedone## $Log: manlink,v $# Revision 1.8 2002/09/17 20:17:16 sam## The "make doc" fix broke "make install" silently; some man page symlinks# were being linked incorrectly. This resulted in files which passed the make# install test but linked to nothing.## Revision 1.7 2002/08/07 06:23:35 sam## freeswan/packaging/utils/manlink## Revision 1.6 2002/05/06 21:20:24 mcr# manlink -n idea is a fail. It depended upon being able to# read the man page at the installed location, which isn't going# to work consistently. manlink now just generates a list of links# that should be made, leaving the Makefile script to decide what# to do with them. Further, it now processes the files found in the# repository, rather than the ones installed.##
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?