blob: 36b76d78b270b6404b324974ae81df8f532f8e41 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
# goto root dir (this script resides in src)
BASEDIR=`dirname $(readlink -f $0)`
cd ${BASEDIR}/../
rm -f gen/.zshrc
WGET=$(which wget)
$WGET -q -O gen/.zshrc http://git.grml.org/f/grml-etc-core/etc/zsh/zshrc
|