/freebsd/contrib/bmake/unit-tests/ |
H A D | sh-flags.exp | 3 echo running 10 echo running; false 19 echo running 26 echo running; false 63 echo running; false 72 echo running; false 81 echo running; false 90 echo running; false 131 echo running 138 echo running; false [all …]
|
H A D | opt-jobs-no-action.exp | 4 echo "false regular" 14 echo run despite the -n option 23 echo "echo running" 25 { echo running 30 echo running; false 33 echo running 37 echo running; false 43 { echo running 48 echo running; false 52 echo running [all …]
|
/freebsd/bin/sh/tests/builtins/ |
H A D | read1.0 | 3 echo "1 2 3" | { read a; echo "x${a}x"; } 4 echo "1 2 3" | { read a b; echo "x${a}x${b}x"; } 5 echo "1 2 3" | { read a b c; echo "x${a}x${b}x${c}x"; } 6 echo "1 2 3" | { read a b c d; echo "x${a}x${b}x${c}x${d}x"; } 8 echo " 1 2 3 " | { read a b c; echo "x${a}x${b}x${c}x"; } 9 echo " 1 2 3 " | { unset IFS; read a b c; echo "x${a}x${b}x${c}x"; } 10 echo " 1 2 3 " | { IFS=$(printf ' \t\n') read a b c; echo "x${a}x${b}x${c}x"; } 11 echo " 1 2 3 " | { IFS= read a b; echo "x${a}x${b}x"; } 13 echo " 1,2 3 " | { IFS=' ,' read a b c; echo "x${a}x${b}x${c}x"; } 14 echo ", 2 ,3" | { IFS=' ,' read a b c; echo "x${a}x${b}x${c}x"; } [all …]
|
H A D | lineno.0 | 1 echo $LINENO 2 echo $LINENO 5 echo $LINENO 6 echo $LINENO 11 echo ${LINENO:-foo} 12 echo ${LINENO=foo} 13 echo ${LINENO:+foo} 14 echo ${LINENO+foo} 15 echo ${#LINENO}
|
H A D | case8.0 | 4 *) echo Failed at $LINENO ;; 8 [[:alpha:][:digit:]]) echo Failed at $LINENO ;; 10 *) echo Failed at $LINENO ;; 14 *[[:lower:]]*) echo Failed at $LINENO ;; 16 *) echo Failed at $LINENO ;; 20 [![:print:]]) echo Failed at $LINENO ;; 22 *) echo Failed at $LINENO ;; 27 [[:print:]]) echo Failed at $LINENO ;; 30 *) echo Failed at $LINENO ;;
|
/freebsd/contrib/libcbor/doc/ |
H A D | make.bat | 20 echo.Please use `make ^<target^>` where ^<target^> is one of 21 echo. html to make standalone HTML files 22 echo. dirhtml to make HTML files named index.html in directories 23 echo. singlehtml to make a single large HTML file 24 echo. pickle to make pickle files 25 echo. json to make JSON files 26 echo. htmlhelp to make HTML files and a HTML help project 27 echo. qthelp to make HTML files and a qthelp project 28 echo. devhelp to make HTML files and a Devhelp project 29 echo. epub to make an epub [all …]
|
/freebsd/contrib/llvm-project/lld/docs/ |
H A D | make.bat | 20 echo.Please use `make ^<target^>` where ^<target^> is one of 21 echo. html to make standalone HTML files 22 echo. dirhtml to make HTML files named index.html in directories 23 echo. singlehtml to make a single large HTML file 24 echo. pickle to make pickle files 25 echo. json to make JSON files 26 echo. htmlhelp to make HTML files and a HTML help project 27 echo. qthelp to make HTML files and a qthelp project 28 echo. devhelp to make HTML files and a Devhelp project 29 echo. epub to make an epub [all …]
|
/freebsd/contrib/one-true-awk/testdir/ |
H A D | T.argv | 1 echo T.argv: misc tests of argc and argv 5 echo >foo1 6 echo >foo2 16 echo * >foo2 17 diff foo1 foo2 || echo 'BAD: T.argv (echo1 *)' 29 echo * >foo2 30 diff foo1 foo2 || echo 'BAD: T.argv (echo2 *)' 41 echo "5 47 diff foo1 foo2 || echo 'BAD: T.argv (argc *)' 49 echo '1 [all …]
|
H A D | T.gawk | 1 echo T.gawk: tests adapted from gawk test suite 7 ./echo '1 17 cmp -s foo1 foo2 || ./echo 'BAD: T.gawk arrayref' 20 ./echo '1 2 3 23 ./echo '3 30 cmp -s foo1 foo2 || ./echo 'BAD: T.gawk asgext' 33 ./echo 'x\y 35 ./echo 'x\y 43 cmp -s foo1 foo2 || ./echo 'BAD: T.gawk backgsub' 47 ./echo 'x\y [all …]
|
H A D | T.main | 1 echo T.main: misc tests of arguments in main 11 echo hello | $awk -d '{print}' >foo1 12 if test -r core; then echo 1>&2 "BAD: T.main awk -d dropped core"; fi 14 echo 'a::b::c' >foo 16 echo '3' >foo2 17 diff foo1 foo2 || echo 'bad: awk -F::' 19 echo 'a::b::c' >foo 21 echo '3' >foo2 22 diff foo1 foo2 || echo 'bad: awk -F ::' 24 echo 'a b c' >foo [all …]
|
H A D | T.func | 1 echo T.func: test user-defined functions 5 echo '10 2 20 echo '1 25 diff foo1 foo2 || echo 'BAD: T.func (function return type)' 27 echo 'data: data' >foo1 33 diff foo1 foo2 || echo 'BAD: T.func (array type)' 41 echo x >foo2 42 diff foo1 foo2 || echo 'BAD: T.func (argument passing)' 58 echo "foo 60 diff foo1 foo2 || echo 'BAD: T.func (convert arg to array)' [all …]
|
H A D | T.builtin | 1 echo T.builtin: test miscellaneous builtin functions 6 echo 2 >foo2 7 diff foo1 foo2 || echo 'BAD: T.builtin (index/substr)' 14 echo '3.14159 0.000 0.000 3.14159 10.000' >foo2 15 diff foo1 foo2 || echo 'BAD: T.builtin (sin/cos)' 25 diff foo1 foo2 || echo 'BAD: T.builtin (rand)' 27 echo 'hello, WORLD!' | 29 echo 'hello, world!|HELLO, WORLD!|hello, WORLD!' >foo2 30 diff foo1 foo2 || echo 'BAD: T.builtin (toupper/tolower)' 34 (export LANG=de_DE.UTF-8 && echo 'Dürst' | [all …]
|
H A D | T.getline | 1 echo T.getline: test getline function 13 cmp -s foo1 foo || echo 'BAD: T.getline (bare getline)' 23 cmp -s foo1 foo || echo 'BAD: T.getline (getline xxx)' 32 cmp -s /etc/passwd foo || echo 'BAD: T.getline (getline <file)' 41 cmp -s /etc/passwd foo || echo 'BAD: T.getline (getline <"-")' 50 cmp -s /etc/passwd foo || echo 'BAD: T.getline (getline <arg)' 59 cmp -s /etc/passwd foo || echo 'BAD: T.getline (getline x <arg)' 68 cmp -s /etc/passwd foo || echo 'BAD: T.getline (cat arg | getline)' 77 cmp -s /etc/passwd foo || echo 'BAD: T.getline (cat arg | getline x)' 80 echo '-1' >foo1 [all …]
|
H A D | T.overflow | 1 echo T.overflow: test some overflow conditions 11 cmp -s foo1 foo2 || echo 'BAD: T.overflow record 1' 13 echo 'abcdefghijklmnopqsrtuvwxyz' >foo1 14 echo hello | $awk ' 19 cmp -s foo1 foo2 || echo 'BAD: T.overflow abcdef' 31 cmp -s foo1 foo2 || echo 'BAD: T.overflow -mr -mf set $1' 42 echo '500 44 cmp -s foo1 foo2 || echo 'BAD: T.overflow -mr -mf NF' 53 test -r core && echo 1>&2 "BAD: T.overflow too long char class dropped core" 55 echo 4000004 >foo1 [all …]
|
H A D | T.close | 1 echo T.close: test close built-in 7 diff /etc/passwd foo || echo 'BAD: T.close (1)' 12 diff foo1 foo2 || echo 'BAD: T.close (2)' 14 echo 0 >foo1 18 diff foo1 foo2 || echo 'BAD: T.close (3)' 20 echo -1 >foo1 24 diff foo1 foo2 || echo 'BAD: T.close (4)' 26 echo 0 >foo1 30 diff foo1 foo2 || echo 'BAD: T.close (5)' 32 echo 0 >foo1 [all …]
|
H A D | T.latin1 | 1 echo T.latin1: tests of 8-bit input 9 diff latin1 foo1 || echo 'BAD: T.latin1 1' 13 diff foo0 foo1 || echo 'BAD: T.latin1 3' 17 diff foo0 foo1 || echo 'BAD: T.latin1 4' 19 echo '/�/' >foo1 22 diff foo1 foo2 || echo 'BAD: T.latin1 5' 25 echo /[��]/ >foo1 27 diff foo1 foo2 || echo 'BAD: T.latin1 6' 30 echo 'This is a line. 34 echo 'Patterns like /[��]/ do not work yet. Example, run awk /[��]/ [all …]
|
H A D | xc | 3 echo $i >/dev/tty 4 echo $i '<<<' 6 echo testdir/$i: 10 make drek || ( echo $i ' ' bad compile; echo $i ' ' bad compile >/dev/tty; continue ) 14 cmp foo1 foo2 || ( echo $i ' ' bad; echo $i ' ' bad >/dev/tty; diff foo1 foo2 ) 15 echo '>>>' $i 16 echo
|
/freebsd/bin/sh/tests/expansion/ |
H A D | set-u1.0 | 2 ${SH} -uc 'unset foo; echo $foo' 2>/dev/null && exit 1 3 ${SH} -uc 'foo=; echo $foo' >/dev/null || exit 1 4 ${SH} -uc 'foo=1; echo $foo' >/dev/null || exit 1 6 ${SH} -uc 'unset foo; echo ${foo-}' >/dev/null || exit 1 7 ${SH} -uc 'unset foo; echo ${foo+}' >/dev/null || exit 1 8 ${SH} -uc 'unset foo; echo ${foo=}' >/dev/null || exit 1 10 ${SH} -uc 'unset foo; echo ${#foo}' 2>/dev/null && exit 1 11 ${SH} -uc 'foo=; echo ${#foo}' >/dev/null || exit 1 12 ${SH} -uc 'unset foo; echo ${foo#?}' 2>/dev/null && exit 1 13 ${SH} -uc 'foo=1; echo ${foo#?}' >/dev/null || exit 1 [all …]
|
H A D | cmdsubst2.0 | 6 echo "Failed: $*" 11 check '`echo /et[c]/` = "/etc/"' 13 check '"`echo /et[c]/`" = "/etc/"' 14 check '`echo "/et[c]/"` = "/etc/"' 17 check '"`echo \"/et[c]/\"`" = "/et[c]/"' 18 check '"`echo "/et[c]/"`" = "/et[c]/"' 19 check '`echo $$` = $$' 20 check '"`echo $$`" = $$' 21 check '`echo \$\$` = $$' 22 check '"`echo \$\$`" = $$' [all …]
|
H A D | trim7.0 | 3 [ "${##1}" = 3 ] || echo '${##1} wrong' 4 [ "${###1}" = 3 ] || echo '${###1} wrong' 5 [ "${###}" = 13 ] || echo '${###} wrong' 6 [ "${#%3}" = 1 ] || echo '${#%3} wrong' 7 [ "${#%%3}" = 1 ] || echo '${#%%3} wrong' 8 [ "${#%%}" = 13 ] || echo '${#%%} wrong' 10 [ "${##0}" = "" ] || echo '${##0} wrong' 11 [ "${###0}" = "" ] || echo '${###0} wrong' 12 [ "${###}" = 0 ] || echo '${###} wrong' 13 [ "${#%0}" = "" ] || echo '${#%0} wrong' [all …]
|
H A D | question1.0 | 7 (echo ${x?abcdefg}) 2>&1 | grep -q abcdefg || exit 1 8 ${SH} -c 'unset foo; echo ${foo?}' 2>/dev/null && exit 1 9 ${SH} -c 'foo=; echo ${foo:?}' 2>/dev/null && exit 1 10 ${SH} -c 'foo=; echo ${foo?}' >/dev/null || exit 1 11 ${SH} -c 'foo=1; echo ${foo:?}' >/dev/null || exit 1 12 ${SH} -c 'echo ${!?}' 2>/dev/null && exit 1 13 ${SH} -c ':& echo ${!?}' >/dev/null || exit 1 14 ${SH} -c 'echo ${#?}' >/dev/null || exit 1 15 ${SH} -c 'echo ${*?}' 2>/dev/null && exit 1 16 ${SH} -c 'echo ${*?}' ${SH} x >/dev/null || exit 1 [all …]
|
/freebsd/contrib/unbound/contrib/ |
H A D | unbound_cache.cmd | 1 @echo off 17 echo Unbound control not found. Exiting... 30 echo Loading cache from %program_path%\%fname% 41 echo Saving cache to %program_path%\%fname% 44 echo ok 49 echo Loading cache from %program_path%\%fname% 56 echo Saving cache to %program_path%\%fname% 59 echo ok 60 echo Loading cache from %program_path%\%fname% 68 echo Saving cache to %arg2% [all …]
|
/freebsd/tools/tools/nanobsd/rescue/ |
H A D | common | 42 echo $1 | tr "[:upper:]" "[:lower:]" 46 echo $1 | tr "[:lower:]" "[:upper:]" 63 # echo "-S115200 -h" > boot.config 64 # echo "console=\"comconsole\"" > boot/loader.conf 65 # echo "comconsole_speed=\"115200\"" >> boot/loader.conf 66 # echo "hint.acpi.0.disabled=\"1\"" >> boot/loader.conf 75 echo "hostname=\"rescue\"" > etc/rc.conf 76 echo "font8x14=\"iso15-8x14\"" >> etc/rc.conf 77 echo "font8x16=\"iso15-8x16\"" >> etc/rc.conf 78 echo "font8x8=\"iso15-8x8\"" >> etc/rc.conf [all …]
|
/freebsd/bin/sh/tests/parameters/ |
H A D | positional1.0 | 3 [ "$1" = a ] || echo "error at line $LINENO" 4 [ "${1}" = a ] || echo "error at line $LINENO" 5 [ "${1-foo}" = a ] || echo "error at line $LINENO" 6 [ "${1+foo}" = foo ] || echo "error at line $LINENO" 7 [ "$1+foo" = a+foo ] || echo "error at line $LINENO" 8 [ "$10" = a0 ] || echo "error at line $LINENO" 9 [ "$100" = a00 ] || echo "error at line $LINENO" 10 [ "${10}" = j ] || echo "error at line $LINENO" 11 [ "${10-foo}" = j ] || echo "error at line $LINENO" 12 [ "${100-foo}" = foo ] || echo "error at line $LINENO"
|
/freebsd/bin/sh/tests/parser/ |
H A D | heredoc4.0 | 6 echo "Failed: $*" 12 cat <<EOF && echo `echo bar` 20 cat <<EOF && echo $(echo bar) 28 echo `echo bar` && cat <<EOF 36 echo $(echo bar) && cat <<EOF
|