T
T
T_y_l_e_r2016-11-06 22:09:38
linux
T_y_l_e_r, 2016-11-06 22:09:38

How to find all files and folders that are available for editing by the current user?

How can the Find command find all files and folders that are available for modification by the current user under which the terminal is running?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
R
RPG, 2016-11-06
@T_y_l_e_r

# только файлы
find / -type f -perm -u=r -user $USER 2> /dev/null

# файлы и каталоги
find / -perm -u=r -user $USER 2> /dev/null

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question