Não foi possível explicar por que isso acontece. Nesta pasta /usr/local/nginx/html
desejo excluir todos ou sky21.ts
, sky22.ts
, ... para sky29.ts
.
Se eu executar este comando diretamente na pasta
find /usr/local/nginx/html -type f -name 'sky2*.ts' -delete
funciona e exclui apenas os arquivos ts
correspondentes, mas quando executado a partir de um script em /home/ubuntu
, ele exclui o arquivo sky2.m3u8
junto com a miniatura stream.png
.
O que está acontecendo? O mesmo comando poderia retornar alguma outra coisa dentro do script? Eu estou ficando louco?
Aqui está meu script
#!/bin/bash
if [ "$1" = "run" ]; then
source $HOME/.bash_aliases
find /usr/local/nginx/html -type f -name 'sky2*.ts' -print > someFile.txt
# while [ 1 ]; do
#ffmpeg -v verbose -i rtmp://ip:1935/live1/sky-2 -c copy -flags -global_header -hls_time 10 -hls_list_size 6 -hls_wrap 10 -start_number 1 /usr/local/nginx/html/sky2.m3u8
# done
else
killall -9 ffmpeg > /dev/null 2>&1
sleep 5s;
screen -ls | grep sky2 > /dev/null 2>&1
if [ "$?" = "1" ]; then
screen -mdS sky2 $0 run
fi
fi
E esta é a saída do find com -print
/usr/local/nginx/html/sky24.ts
/usr/local/nginx/html/sky21.ts
/usr/local/nginx/html/sky23.ts
/usr/local/nginx/html/sky28.ts
/usr/local/nginx/html/sky27.ts
/usr/local/nginx/html/sky22.ts
/usr/local/nginx/html/sky25.ts
/usr/local/nginx/html/sky26.ts
/usr/local/nginx/html/sky29.ts
Tags find shell-script