/
githubmirror
/
lsof
Обзор
Документация
Войти
/
githubmirror
/
lsof
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/case-20-offset-field.bash
24 строки
329 B
Jiajie Chen
Use /usr/bin/env bash for shebang because /bin/bash is not available on FreeBSD
18 янв 2023, 19:23
18 янв 2023, 19:23
25e0eee
Код
Авторство
О чём код?
#!/usr/bin/env bash source tests/common.bash base=$(pwd) t=/tmp/lsof-test-reg-file-$$ p=/tmp/lsof-test-reg-fifo-$$ mkfifo $p { printf "%d" 1 read < $p & } | cat > $t & r=1 if [ "$($lsof -Fo $t | grep '^o')" = o0t1 ]; then echo > $p r=0 fi rm /tmp/lsof-test-reg-file-$$ rm /tmp/lsof-test-reg-fifo-$$ exit $r