#!/usr/bin/bash for f in $(ls --ignore="*.sh" --ignore="*.md") do # echo $f ln -s "$(pwd)/$f" "$HOME/.${f##*/}" done