You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
konversation/konversation/scripts/tdeversion

10 lines
168 B

#!/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