#!/bin/bash
echo 'npm install -gf @gameroom/cli@latest' | tee Gameroom-Update && chmod +x Gameroom-Update && \
echo 'gameroom login' | tee Gameroom-Login && chmod +x Gameroom-Login && \
echo 'gameroom unlock' | tee Gameroom-Unlock && chmod +x Gameroom-Unlock && \
echo 'gameroom report auto-priced -w ~/downloads' | tee Auto-Priced-Report && chmod +x Auto-Priced-Report && \
echo 'gameroom report container-units -w ~/downloads' | tee Container-Units-Report && chmod +x Container-Units-Report && \
echo 'gameroom report lines -w ~/downloads' | tee Lines-Report && chmod +x Lines-Report && \
echo 'gameroom report payments' | tee Payments-Report && chmod +x Payments-Report && \
echo 'gameroom report sales' | tee Sales-Report && chmod +x Sales-Report && \
echo 'gameroom report small-cash-payouts -t' | tee Small-Cash-Payouts-Report && chmod +x Small-Cash-Payouts-Report && \
echo 'gameroom report timecards --weeks 2 -w ~/downloads' | tee Timecards-Report && chmod +x Timecards-Report
