Files
qtcreator/build_files/remove_elf.sh
2022-12-07 16:10:08 +03:00

8 lines
104 B
Bash

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