mirror of
https://github.com/shokinn/.files.git
synced 2025-01-19 05:22:25 +00:00
9 lines
128 B
Bash
Executable file
9 lines
128 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if [[ -z "$1" ]]; then
|
|
echo "Filepath missing."
|
|
exit 1
|
|
fi
|
|
|
|
rsync --verbose --progress --inplace $1 /tmp/
|