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