8 lines
79 B
Bash
Executable File
8 lines
79 B
Bash
Executable File
#!/bin/sh
|
|
if [ ! -z "$1" ]; then
|
|
n=$1
|
|
else
|
|
n="tmp.png"
|
|
fi
|
|
scrot -sz $HOME/$n
|