mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 16:51:34 +02:00
9 lines
254 B
Bash
9 lines
254 B
Bash
#!/bin/sh
|
|
fileDate=`date +%Y-%m-%d-%H-%M-%S`
|
|
machineName=`hostname`
|
|
fileName=".png"
|
|
FILENAME=$fileDate"-"$machineName$fileName
|
|
SHORT=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 7 | head -n 1)
|
|
FILENAMESHORT=$fileDate$fileName
|
|
|
|
import $FILENAMESHORT
|