From f2ef945700089eef55b948b4cb77f4eae48d077e Mon Sep 17 00:00:00 2001 From: Avery Pennarun Date: Sun, 2 Jan 2011 11:49:34 -0800 Subject: [PATCH] redo-sh.do: wrap long lines. --- redo-sh.do | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/redo-sh.do b/redo-sh.do index 9ca1879..189a43a 100644 --- a/redo-sh.do +++ b/redo-sh.do @@ -11,9 +11,10 @@ for sh in dash sh ash ksh pdksh bash zsh busybox; do printf "Testing %s... " "$sh" FOUND=`which $sh` || { echo "missing"; continue; } - # It's important for the file to actually be named 'sh'. Some shells (like - # bash and zsh) only go into POSIX-compatible mode if they have that name. - # If they're not in POSIX-compatible mode, they'll fail the test. + # It's important for the file to actually be named 'sh'. Some + # shells (like bash and zsh) only go into POSIX-compatible mode if + # they have that name. If they're not in POSIX-compatible mode, + # they'll fail the test. rm -f $1.new/sh ln -s $FOUND $1.new/sh