Udo Richter udo_richter@gmx.de writes:
syrius.ml@no-log.org wrote:
grep|awk|sed in one sed: sed -ne '/define VDRVERSION/ { s/^.*"(.*)".*$/\1/; p }' config.h
Mine is shorter! :P
sed -ne '/define VDRVERSION/s/.*"(.*)".*/\1/p' config.h
awk -F '"' '/define VDRVERSION/ {print $2}' config.h
mine ! ;-)