/
niceSOFT
/
diffutils
Обзор
Документация
Войти
/
niceSOFT
/
diffutils
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
v3.2
tests/stdin
24 строки
369 B
Jim Meyering
maint: adjust init.sh use to conform
04 сен 2010, 11:15
04 сен 2010, 11:15
361b3b1
Код
Авторство
О чём код?
#!/bin/sh # Ensure that "-" means "standard input". . "${srcdir=.}/init.sh"; path_prepend_ ../src fail=0 cat <<EOF > exp || fail=1 --- - +++ b @@ -1 +1 @@ -a +b EOF echo a > a echo b > b diff -u - b < a > out 2> err; test $? = 1 || fail=1 # Remove date and time. sed -e 's/^\([-+*][-+*][-+*] [^ ]*\) .*/\1/' out > k; mv k out compare out exp || fail=1 Exit $fail