linux return the path of a file code example
Example 1: get full path of files in directory linux command
ls | xargs readlink -f
Example 2: how to find the path of a command in linux
which python
which -a pyton
ls | xargs readlink -f
which python
which -a pyton