Copyright © 2012 blog.icod.de. All Rights Reserved. Snowblind by Themes by bavotasan.com. Powered by WordPress.
Archive for August 29th, 2010
Hier ein kleines Skript um über die Shell Drupal Module zu entpacken und zu löschen.
upk.sh
#!/bin/bash
for f in ./*gz;
do tar xvzf ${f};
rm -f ${f};
done;
chown -R webbenutzer:webgruppe *