Problem
You want to display the full path of files using ls, perhaps to use it as an input to a different command (ie rm).
Solution
You can use the following:
ls -d -1 /path/with/files/*.*
Taken from: here.
Problem
You want to display the full path of files using ls, perhaps to use it as an input to a different command (ie rm).
Solution
You can use the following:
ls -d -1 /path/with/files/*.*
Taken from: here.