- cmd-f Search & Find Text (in file)
- cmd-shift-f Search & Find Text (project wide)
- cmd-d Duplicate Current Line
- cmd-x Cut Current Line
- cmd-1 Project Directory Treeview
#!/bin/bash | |
echo "\n\n--- Killing Stupid Adobe Auto Load Crap ---\n\n" | |
launchctl unload -w /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist | |
launchctl unload -w ~/Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist | |
echo "\n\n--- Done! ---\n\n" |
{"version":1,"resource":"file:///Users/erikgall/Code/bolt/bolt-ux/src/app/Helpers/env.js","entries":[{"id":"FM0G.js","timestamp":1700205770371}]} |
pg_restore -t {table_name} -d {database_name} --data-only -e -v path/to/dump/file.dump |
pg_restore -a -e -v --jobs=8 --use-list=toc.dat -d db_name -h 127.0.0.1
-a
, --data-only
- restore only the data, no schema-e
, --exit-on-error
- exit on error, default is to continue-v
, --verbose
- verbose mode-j
, --jobs=NUM
- use this many parallel jobs to restore