User Tools

Site Tools


Sidebar

os_cp:locate_find:solutions

5locate '*/bin'
locate -b '\bin'
locate -r '/bin$'
locate -b -r '^bin$'
6locate '*/icons/*pause*'
locate --all /icons/ pause
7locate '*[*'
locate -r '\['
9find /srv /var/lib/zypp
10find ~ -name "*.xml"
11find ~ -size 0
find ~ -empty
12find -L /usr/include -size -32c -exec cat \{\} \;
# the switch -L follows symlinks
13find / -user student ! -path '/home/student/*'
find / -user student ! -path ~'/*'
14find ~ ! -perm -g+r

os_cp/locate_find/solutions.txt · Last modified: 2024/03/11 20:28 by jkonczak