JamesMcGuigan / dotfiles

My personal .dotfiles and CLI scripts

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dotfiles

James McGuigan's personal dotfiles and CLI scripts

git clone git@github.com:JamesMcGuigan/dotfiles.git
cd dotfiles

find `pwd`/.* | xargs dos2unix  # if windows

find `pwd`/.* -maxdepth 0 -type f | 
    grep -v '\.(md|yml|ipynb)$' | 
    grep -v $(echo '@\(Darwin\|Linux\|CYGWIN_NT-10.0\)$' | sed "s/`uname`/^$/") |
    parallel "ln -svf {} ~/{= s:^.*/::; s:\@`uname`:: =}"

find `pwd`/.* -maxdepth 0 -type d | 
    grep -v '.idea\|/.git\|\.$' | 
    parallel "ln -svf {} ~/"

About

My personal .dotfiles and CLI scripts

License:The Unlicense


Languages

Language:Vim Script 88.9%Language:Shell 8.2%Language:Python 1.7%Language:Perl 0.9%Language:Jupyter Notebook 0.4%