while IFS= read -r dir; do
find "$dir" -type f
done < <(envsubst < my_big_file)
See https://unix.stackexchange.com/a/294400/133219 and the man page for more info on envsubst
.
1
solved executing find command with a file having directory list
while IFS= read -r dir; do
find "$dir" -type f
done < <(envsubst < my_big_file)
See https://unix.stackexchange.com/a/294400/133219 and the man page for more info on envsubst
.
1
solved executing find command with a file having directory list