6 lines
217 B
Bash
6 lines
217 B
Bash
|
#!/usr/bin/env sh
|
||
|
|
||
|
WEIRD_NUMBER="115748555" #steamID3
|
||
|
|
||
|
find "$HOME/.local/share/Steam/userdata/$WEIRD_NUMBER/760" -type f -name "*.jpg" -not -path "*/thumbnails/*" -printf "%T@ %p\n" | sort --reverse | cut -d' ' -f2
|