Skip to content
This repository was archived by the owner on Oct 11, 2024. It is now read-only.

Extract the run command into a script. #5

Closed
RobertZenz opened this issue Aug 24, 2017 · 1 comment
Closed

Extract the run command into a script. #5

RobertZenz opened this issue Aug 24, 2017 · 1 comment

Comments

@RobertZenz
Copy link

The run command mentioned in the README should be extracted into a script so that someone can simply clone the repository and run the script, instead of copying a command.

It can also be shortened, depending on how portable one does want it. For example this is the shortest incarnation I can come up with:

ls -v *.sql | xargs psql -f

However, the -v flag of ls is not portable and is most likely only available in the GNU version...but so is the -V flag of sort, as far as I am aware. So the most portable script is most likely this one:

ls *.sql | sort -n | xargs psql -f
@kmoppel
Copy link
Contributor

kmoppel commented Sep 11, 2017

A good idea! Could make it more easier for beginners. So I've added a rollout.sh script + changed the SQL scripts so that they could be executed also one by one (added \c + set role)

@kmoppel kmoppel closed this as completed Sep 11, 2017
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants