Skip to content

Instantly share code, notes, and snippets.

@ethicka
Last active March 21, 2018 13:59
Show Gist options
  • Save ethicka/ab59dc2d2cf1d9124787fb03a5e1662f to your computer and use it in GitHub Desktop.
Save ethicka/ab59dc2d2cf1d9124787fb03a5e1662f to your computer and use it in GitHub Desktop.

Common Commands

Apache (Ubuntu)

apache2ctl configtest - Configtest before restarting Apache.

service apache restart - Restart Apache.

service apache restart - Restart MySQL.

apache2ctl -M - List loaded Apache modules.

Ruby / Gems

gem cleanup - Cleanup the gems.

gem cleanup -d - Dry-run the cleanup.

Homebrew

brew update - Update Homebrew without upgrading.

brew upgrade - Upgrade all casks.

File Compression

tar -xzvf [filename] - Untar a file.

tar -zcvf folder.tar.gz [file/folder] - Tar a file/folder.

MySQL

mysql -u username -p -h localhost - Login to MySQL.

scp and rscync

Copyin' stuff.

scp -r [email protected]:/httpdocs/folder/* . - copy everything from the remote server to the current server.

rsync -av --files-from=files_to_transfer old/ new/ - Sync files from a list in a file.

File and Folders

Normalize file/folder permissions.

find /path/to/your/wordpress/install/ -type d -exec chmod 755 {} \;
find /path/to/your/wordpress/install/ -type f -exec chmod 644 {} \;

du -sh foldername - get the size of the folder in human-readable format.

Mac OS X

Apache

sudo apachectl restart - Restart Apache.

Virtualhost.sh

sudo virtualhost.sh [hostname] - Create new virtualhost.

UFW

ufw enable and ufw disable - Enable and disable UFW

ufw show added - Show added configuration before running enable

WordPress

WP-CLI

wp search-replace 'https://olddomain.com' 'https://newdomain.com' --skip-columns=guid - search and replace old domain in the database. Add --dry-run to test. Add --url=SITE_URL to apply to a multidomain install.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment