flutter-freaccess-hub/scripts/remove_zone_identifier.sh

6 lines
195 B
Bash
Executable File

#!/bin/bash
# Encontra e remove todos os arquivos com final :Zone.Identifier
find . -type f -name '*:Zone.Identifier' -exec rm -f {} +
echo "Todos os arquivos :Zone.Identifier foram removidos."