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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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') |
OlderNewer