mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
12 lines
209 B
Bash
Executable File
12 lines
209 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Create a set of screenshots from a URL
|
|
# Usage: screenshot <url>
|
|
|
|
if [ $# -lt 1 ]; then
|
|
echo 1>&2 Usage: screenshot \<url\> \(parameters\)
|
|
exit 127
|
|
fi
|
|
|
|
pageres 375x667 768x1024 1280x800 $*
|