9 lines
231 B
Bash
Executable File
9 lines
231 B
Bash
Executable File
#!/bin/sh
|
|
# -*- mode: sh; fill-column: 75; tab-width: 8; coding: utf-8-unix -*-
|
|
# https://forums.gentoo.org/viewtopic-t-1044220-start-0.html
|
|
|
|
ROLE=base
|
|
|
|
eix-test-obsolete -H brief | grep -v -e "^No " -e "^Skipping " -e "^$"
|
|
exit 0
|