You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/zsh
|
|
|
|
if [[ -z "$1" ]]; then
|
|
source ./build
|
|
fi
|
|
|
|
find . -name '*.*' -type f -maxdepth 1 -not -name '.*' -not -name '*.md' -print0 | xargs -0 tar -cf - \
|
|
| ssh milofultz_milofultztest@ssh.phx.nearlyfreespeech.net 'tar -C /home/public/tinybrain.fans/ -xf -'
|
|
|