I want to run a shell script to gather Twitter data with t. I don't want to overwrite existing files so how can I define s.th. like
If there is a file called twitter.csv in the folder then create a new file called twitter2.csv ... or open twitter.csv and add new data
cd data
t timeline @twitter --csv --number 3000 > twitter.csv
cd ..