view setup.sh @ 188:757255b99cff default tip

Der Pfad von nano hat sich geƤndert
author Dirk Olmes <dirk.olmes@codedo.de>
date Tue, 14 Mar 2023 07:19:52 +0100
parents f6df36a328b5
children
line wrap: on
line source

#!/bin/bash
#
# setup the shell env on a new, naked host
#
cd $HOME

replace_with_link() {
	local target="$1"
	local source="$2"

	if [[ -f $target ]]; then
		rm $target
	fi
	ln -s $source $target
}

replace_with_link .zshrc .zsh-env/zshrc
replace_with_link .hgrc .zsh-env/hgrc
replace_with_link .nanorc .zsh-env/.nanorc
replace_with_link .screenrc .zsh-env/.screenrc
replace_with_link .gitconfig .zsh-env/.gitconfig

touch .zsh-env/zshrc-$HOST

cat << EOF > .zsh-env/.hgignore
syntax: glob
.hgignore
zshrc-$HOST
EOF