8 lines
118 B
Bash
Executable File
8 lines
118 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Install my dotfiles.
|
|
#
|
|
|
|
rm $HOME/.zshrc $HOME/.profile
|
|
ls -d */ | tr -d / | xargs ./stow.sh -t $HOME -R
|