Last active
October 13, 2022 21:20
-
-
Save nazroll/fea293aa582506d7b1e7 to your computer and use it in GitHub Desktop.
Revisions
-
nazroll revised this gist
Sep 12, 2015 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -9,4 +9,5 @@ export BOTO_CONFIG="/home/username/.boto" # A simple gsutil command that returns a list of files/folders in your bucket. # Replace "yourbucketname" with a bucket name from your Google Cloud Storage. # You can replace this line with your own gsutil command to upload a file, etc. gsutil ls -l gs://yourbucketname -
nazroll revised this gist
Sep 12, 2015 . No changes.There are no files selected for viewing
-
nazroll revised this gist
Sep 12, 2015 . No changes.There are no files selected for viewing
-
nazroll revised this gist
Sep 12, 2015 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,9 +4,9 @@ PATH="$PATH":/path/to/gsutil/ # Replace "/home/username/" with the path of your home directory in Linux/Mac. # The ".boto" file contains the settings that helps you connect to Google Cloud Storage. export BOTO_CONFIG="/home/username/.boto" # A simple gsutil command that returns a list of files/folders in your bucket. # Replace "yourbucketname" with a bucket name from your Google Cloud Storage. gsutil ls -l gs://yourbucketname -
nazroll created this gist
Sep 12, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ #! /bin/bash # Replace "/path/to/gsutil/" with the path of your gsutil installation. PATH="$PATH":/path/to/gsutil/ # Replace "/home/username/" with the path of your home directory in Linux/Mac. # The ".boto" file contains the config to connect to your Google Cloud Storage project. export BOTO_CONFIG="/home/username/.boto" # A simple gsutil command that returns a list of files/folders in your bucket. # Replace "yourbucketname" with a bucket name from your Google Cloud Storage project. gsutil ls -l gs://yourbucketname