fix _make_git_tar_dir.sh - don't 'append directory' to symlinks
[cmdllinux.git] / scripts / _find_busybox-custom_links
blob47faf6e7fb41f3364989e2c1042fe7a50ff7d1b6
1 #! /bin/sh
3 [ -z "$1" ] && exit 1
4 BBOX=$1
5 find /bin /sbin /usr/bin /usr/sbin -maxdepth 1 -type l | while read line; do echo -n "$line "; readlink $line; done | grep "[ /]$BBOX$"