#!/usr/bin/python

# Dateiauflistung Version 1
# Copyright 2008 Kevin Zuber
# Support: http://forum.ubuntuusers.de/topic/148193

import os,sys
files=sys.argv
del files[0]
string = "Dateien:\n"
for file in files:
	string +=file + "\n"
cmd = "zenity --info --text '"+string+"' --title 'Auflistung der Dateien'"
os.system(cmd)


