Linux command collection

Contains: This is not a standalone topic. Here I will write down a few often used, not common commands. [Postgres] pg_dump -U postgres -p 9999 user_table > user_table_backup.sql Create dump from postgres with postgres user which connect on port 9999 from user_table and redirect output to user_table_backup.sql. select * from pg_shadow; Check postgres […]