Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. #!/bin/bash
  2. directory=$1
  3.  
  4. find "$directory" -type l | while read link; do
  5. if [! -L $link ]; then
  6. echo -e "$link \t\t\t[ NEFUNKCNI ]"
  7. fi
  8. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement