-
Notifications
You must be signed in to change notification settings - Fork 13
Home
Jonas Lundberg edited this page May 22, 2021
·
2 revisions
If you're reusing the same global settings in all files you can turn that into an alias
alias ain='ain /home/user/.global.ain'
By using temp-file redirection you can compare results from different invocations.
This is great for comparing the result of some local branch with a known good reference (like a git bisect for API:s):
diff -u <(ENV=test ain service.ain) <(ENV=prod ain service.ain)