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.
 
 
scriptform/examples/megacorp_acc/job_download_db.sh

11 lines
215 B

#!/bin/sh
FILESIZE=$(stat -c "%s" megacorp.db)
cat << EOF
HTTP/1.0 200 Ok
Content-Type: application/octet-stream
Content-Disposition: attachment; filename=megacorp.db
Content-Length: $FILESIZE
EOF
cat megacorp.db