blob: 54bc4e6a5a2a85af306a630c2a86bc513ae0b58d [file] [log] [blame]
Joe Gregorio266c6442011-02-23 16:08:54 -05001#!/bin/bash
2#
3# Copyright 2011 Google Inc. All Rights Reserved.
4# Author: jcgregorio@google.com (Joe Gregorio)
5#
6# Uploads a training data set to Google Storage to be used by this sample
Joe Gregorio11690e02011-10-14 11:05:35 -04007# application.
Joe Gregorio65826f92011-06-03 11:20:29 -04008#
9# Usage:
Joe Gregorio11690e02011-10-14 11:05:35 -040010# setup.sh file_name bucket/object
Joe Gregorio266c6442011-02-23 16:08:54 -050011#
12# Requirements:
13# gsutil - a client application for interacting with Google Storage. It
14# can be downloaded from https://code.google.com/apis/storage/docs/gsutil.html
Joe Gregorio11690e02011-10-14 11:05:35 -040015FILE_NAME=$1
16OBJECT_NAME=$2
17gsutil cp $FILE_NAME gs://$OBJECT_NAME