- On EPEL 9, reduce the list of obsoletes to packages actually built Signed-off-by: Michel Lind <salimma@fedoraproject.org>
7 lines
137 B
Bash
Executable file
7 lines
137 B
Bash
Executable file
#!/bin/sh
|
|
if [ $# -ge 1 ]; then
|
|
BIN=$1
|
|
else
|
|
BIN=uutils-coreutils
|
|
fi
|
|
$BIN --help | grep , | paste -s | tr -d '[:space:]' | tr ',' ' '
|