I have a File Pattern Like
Listing "/MySqlDB-Backup"... DONE
[F] 202818 MySql-DataBase-2020-09-26_111645.zip
[F] 211436 MySql-DataBase-2020-10-05_063303.zip
How can I extract Only the Name of the files Like
MySql-DataBase-2020-09-26_111645.zip
MySql-DataBase-2020-10-05_063303.zip
Any Grep/awk/sed command which can work?
I tried using grep -w "MySql-DataBase"
The Output was :
MySql-Database
MySql-Database
MySql-Database
I want to use it in Bash