mirror of
git://git.sv.gnu.org/findutils.git
synced 2026-01-29 04:53:21 +01:00
8 lines
149 B
Plaintext
8 lines
149 B
Plaintext
# tests for -empty
|
|
exec rm -rf tmp
|
|
exec mkdir tmp
|
|
exec true > tmp/empty
|
|
exec echo > tmp/notempty
|
|
find_start p { tmp -type f -empty }
|
|
exec rm -rf tmp
|