#!/bin/bash for i in $(ls -A| grep -e "^\."| grep -v ".git$" |grep -v "swp") do echo "ln -s $PWD/$i $HOME/$i" done