Skip to content

Instantly share code, notes, and snippets.

View albertski's full-sized avatar

Albert Jankowski albertski

View GitHub Profile
@albertski
albertski / rwdurl
Created September 16, 2016 14:05 — forked from zachleat/rwdurl
A command line utility to open a url with a bunch of different screen widths (and organize the windows).
#!/bin/bash
display_usage() {
echo "This script should be run with one argument."
echo "Example: rwulr http://www.siteurl.com"
}
if [ $# -le 0 ]
then
display_usage