Guest User

Untitled

a guest
Jan 23rd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. itc_username=some_username
  4. itc_password=some_password
  5. itc_account=12345678
  6.  
  7. yesterday=`date -v-1d +"%Y%m%d"`
  8.  
  9. if [ "$1" == "" ]; then
  10. echo downloading file for yesterday: $yesterday
  11. java Autoingestion $itc_username $itc_password $itc_account Sales Daily Summary $yesterday
  12. else
  13. echo downloading file for: $1
  14. java Autoingestion $itc_username $itc_password $itc_account Sales Daily Summary $1
  15. fi
  16.  
  17. gunzip *.gz
Add Comment
Please, Sign In to add comment