#!/bin/sh # Prints the KDE version. PORT=$1; SERVER=$2; TARGET=$3; tde-config --version | while read line; do dcop $PORT default say $SERVER "$TARGET" "$line"; done