1
Fork 0
dotfiles/pull.sh
2023-08-21 16:42:20 -05:00

8 lines
141 B
Bash
Executable file

#!/bin/sh
for synced in `cat synced`; do
echo -n $synced...
mkdir -p `dirname -- $synced`
cp $HOME/$synced .
echo done
done