summaryrefslogtreecommitdiff
path: root/bin/extra/last_replay
blob: 5cc0dbac52eeafca9acb81b5a0481e8512f20357 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/sh

File="$(find ~/vids/replays -type f -printf '%Ts %p\n' |
         grep -E '\.(mp4|mkv|webm)' |
	 sort -n -r |
 	 head -n 1 |
 	 cut -f 2- -d' ' | tr -d '\n')"

printf '%s' "$File"