This commit is contained in:
2022-12-07 16:10:08 +03:00
parent 8c4ba2b049
commit eb04500c28

View File

@@ -0,0 +1,8 @@
#! /bin/bash
for f in $(ls ./)
do
if [[ $(file -b $f | grep "ELF 64-bit") ]]
then
rm -v $f
fi
done