8 lines
176 B
Bash
Executable File
8 lines
176 B
Bash
Executable File
#!/bin/sh
|
|
|
|
filelist=`sed "s/['\"]/\\\&/g"`
|
|
|
|
{ echo $filelist | tr [:blank:] \\n | /usr/lib/rpm/find-requires | \
|
|
grep -v 'artsc\|esd\|audiofile\|asound\|libpulse'
|
|
} | sort -u
|