Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- DST="/home/soporte/records"
- rm files
- rm /home/soporte/records/*
- read -p "Introduzca el Número a buscar: " NUM
- find /var/grabaciones/ -name "*$NUM*" | grep 2020- >> files
- for i in $(cat files); do
- FECHA=$( echo $i|awk -F'/' '{print $5}' )
- mkdir $DST/$FECHA
- cp -v $i $DST/$FECHA/
- done
- echo "Proceso terminado!!"
- echo "Ya puede descargar los archivos de la carpeta records!!"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement