re-structured

This commit is contained in:
2021-01-24 15:48:33 +01:00
parent f15a95255f
commit e2466ddc8f
8 changed files with 26 additions and 20 deletions

4
bash/find_links_to_target.sh Executable file
View File

@@ -0,0 +1,4 @@
#!/bin/bash
# find all links in the fs, that link to a specific target:
find / -type l -exec readlink -nf {} ';' -exec echo " -> {}" ';' | grep "/bin/bash"