Re: [PATCH] find_repeated_words.sh: Do not process files that are redirects.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 03/15/2015 01:15 AM, Stéphane Aulery wrote:
> Signed-off-by: Stéphane Aulery <saulery@xxxxxxx>

Thanks, Stéphane. Patch applied.

Cheers,

Michael


> ---
>  scripts/find_repeated_words.sh | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/scripts/find_repeated_words.sh b/scripts/find_repeated_words.sh
> index 50133be..747872e 100644
> --- a/scripts/find_repeated_words.sh
> +++ b/scripts/find_repeated_words.sh
> @@ -25,6 +25,9 @@
>  #
>  
>  for file in "$@" ; do 
> +   # Do not process files that are redirects.
> +   grep -qE "^\.so man.*" "$file"
> +   if test $? -ne 0; then
>      words=$(MANWIDTH=2000 man -l "$file" 2> /dev/null | col -b | \
>  	tr ' \008' '\012' | sed -e '/^$/d' | \
>  	sed 's/ *$//' | 
> @@ -33,4 +36,5 @@ for file in "$@" ; do
>      if test -n "$words"; then
>          echo "$file: $words"
>      fi
> +   fi
>  done
> 


-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




[Index of Archives]     [Kernel Documentation]     [Netdev]     [Linux Ethernet Bridging]     [Linux Wireless]     [Kernel Newbies]     [Security]     [Linux for Hams]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux RAID]     [Linux Admin]     [Samba]

  Powered by Linux