5 lines
178 B
Bash
5 lines
178 B
Bash
|
#!/bin/bash
|
||
|
# shows `apt-cache show`information for a package that given binary belongs to (relative path)
|
||
|
apt-cache show $(apt-file search $(which $1) | cut -d ":" -f 1)
|
||
|
exit 0
|