mvd_transfer.sh 268 B

123456789101112
  1. #!/usr/bin/env bash
  2. # small transfer script by Shaque 2012-11-22
  3. mvd="$1"
  4. game="$2"
  5. _file="$game/demos/$mvd"
  6. if [ -f "$_file" ]; then
  7. echo "put $_file" | sftp -q -p someuser@aq2world.com &
  8. else
  9. echo "$0 Error: '$_file' not found. Not transferring anything. :("
  10. fi