Pass --no-filename to grep command.

This commit is contained in:
Andrius Štikonas 2023-03-05 00:11:47 +00:00
parent f75a5f0949
commit 364cacb1ce
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ build ed-1.4
build bc-1.07.1
# Clear up some RAM space
grep '^build' "${SOURCES}"/run*.sh | sed "s/build //" | sed "s/ .*$//" | while read -r p ; do
grep --no-filename '^build' "${SOURCES}"/run*.sh | sed "s/build //" | sed "s/ .*$//" | while read -r p ; do
rm -rf "${SOURCES:?}/${p:?}"
done