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