From: Erich Smith Date: Sat, 28 Apr 2012 14:40:16 +0000 (-0400) Subject: fix typo X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=2086a053dfc0e4a94a2139b7cf02bd3b4ecab5de;p=common%2Fbash_it.git fix typo --- diff --git a/plugins/available/base.plugin.bash b/plugins/available/base.plugin.bash index 441b3ff..0447f33 100755 --- a/plugins/available/base.plugin.bash +++ b/plugins/available/base.plugin.bash @@ -33,7 +33,7 @@ pickfrom () [ -z "$file" ] && reference $FUNCNAME && return length=$(cat $file | wc -l) n=$(expr $RANDOM \* $length \/ 32768 + 1) - head -n $n $f | tail -1 + head -n $n $file | tail -1 } pass ()