blob: 72d00693f9d22d121abda96d3623e8f55d4c10c9 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/bash
# goto root dir (this script resides in src)
BASEDIR=`dirname $(readlink -f $0)`
cd ${BASEDIR}/../
rm -f gen/.zshrc
curl -L -s http://git.grml.org/f/grml-etc-core/etc/zsh/zshrc -o gen/.zshrc
|