12 lines
197 B
Bash
Executable File
12 lines
197 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 -s $PWD/$filename ~/$filename
|
|
done
|