I have written a script that checks out some files from a repository, operates on them in some way and produces a result file in html.
I would like all users to be able to run the script and view the results independently. This includes one user running the script and another viewing the results.
From my limited understanding of the Unix folder structure I believe I should put the script itself in /usr/local/bin.
My question is where should I put the files that are checked out from the repo and the results? Should they go in sub-folders of /usr/local, and if so, is there a standard practice I should be following? Or should I put them somewhere else entirely?