4 lines
113 B
Bash
4 lines
113 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
find ./ -type f -not -path './.git/*' | sed -e 's/^.\///' | xargs -i{} -n1 cp ~/{} ./{} -rf
|