I have a large amount of folders and files.
I need to parse it and find only those with the extension xmp to finally remove them.
How can I achieve this and keep track of the name of the removed files?
To find: I know I can use find /path -name "*.xmp"
But how can I run two commands on the output? keep file path and name in removelist.txt and remove it.
fprintis exactly what I was looking for. Thanks. – Kevin Lemaire Jan 26 '18 at 10:18