I have a Postgres database dump in a .7z archive.
I can extract it and import it with:
7za e dump.7z dump
psql -h localhost db_name < dump
but I'm just running out of disk space.
What is the correct way to pipe the 7za output to psql, so that I don't have a large temporary file taking up space?