Skip to content

Instantly share code, notes, and snippets.

View craigpearson's full-sized avatar

Craig Pearson craigpearson

View GitHub Profile
@craigpearson
craigpearson / vs-code-keyboard-shortcuts.MD
Last active September 24, 2019 00:01
VS Code Keyboard Shortcuts

VS Code Keyboard Shortcuts

Shortcut Action
⌘ cmd + ⇧ shift + [ Focus on previous file
⌘ cmd + ⇧ shift + ] Focus on next file
⌘ cmd + \ Split current file
⌘ cmd + ⌥ alt + 0 Toggle Horizontal / Vertical group

Focus and Navigation

@craigpearson
craigpearson / Output order data
Created May 23, 2023 10:36
Output order data
#!/bin/bash
# List all the site URLs
sites=$(wp site list --field=url)
# Loop over each site
for site in $sites
do
# Create a safe filename from the URL
filename=$(echo "$site" | sed 's/https\?:\/\///' | sed 's/\//_/g')