I’ve Pulse 14 with plain Debian installation and so far didn’t notice any issues. Though admittedly, I’m not a heavy laptop user. Your mileage may vary I guess.
- Posts
- 2
- Comments
- 95
- Joined
- 12 mo. ago
- Posts
- 2
- Comments
- 95
- Joined
- 12 mo. ago
- JumpDeleted
Permanently Deleted
- JumpDeleted
Permanently Deleted
You want++OK, actually not exactly.readlink -frather thanls -l.readlinkwon’t print path to the symlink so it’s not as straightforward.++Also, you want
+infind ... -exec ... +rather than;.At this point I feel committed to making readlink work. ;) Here’s the script you want:
#!/bin/sh want=$1 shift readlink -f -- "$@" | while read got; do if [ "$got" = "$want" ]; then echo "$1" fi shift doneand execute it as:
find ~ -type l -exec /bin/sh /path/to/the/script /path/to/target/dir {} +