Files
dotfiles/link_config.sh
Fabian Ising 7eed56c936 Fix links
2017-05-24 16:59:32 +02:00

12 lines
202 B
Bash
Executable File

#! /bin/sh
#
# link_config.sh
# Copyright (C) 2016 fabian <fabian@testvm>
#
# Distributed under terms of the MIT license.
#
for filename in .config/*; do
ln -Ts $PWD/$filename $HOME/$filename
done