7 results found in 3 ms, displaying results 1-7
#!@bash@
SRCDIR=$(pwd)/../src
cd `dirname $0`
FILE=`basename $0 .sh`
bash @prefix@/bin/webdsl cleanall > /dev/null 2> /dev/null
bash @prefix@/bin/webdsl test-ng $FILE 2>&1 | cat > $FILE.out
exec 3<> $FILE.app
while read line <&3
do
if echo "$line" | grep -q "^//"; then
pattern=`echo "$line" | sed 's/^[/]*//'`
echo $pattern | grep -q "^\^"
negate=$?
echo $pattern | grep -q "^#"
more fragments
#!/bin/bash
FILE=$1
WEBDSL=${2:-bash /usr/local/bin/webdsl}
TESTARG=${3:-test}
$WEBDSL clean > /dev/null 2> /dev/null
$WEBDSL $TESTARG $FILE 2>&1 | cat > $FILE.out
#cat $FILE.out
echo "checking"
exec 3<&0
exec 0<"$FILE"
#printf '%s\n' "$FILE.out" |
#while read -rd $'\r' line; do
while read -r line; do
echo $line
if echo "$line" | grep -q "^//"; then
pattern=`echo "$line" | sed 's/^[/]*//
more fragments