1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-09-28 12:58:57 +00:00
dotfiles/fish/functions/listrecords.fish

9 lines
222 B
Fish

function listrecords
for i in (seq (count $recfiles))
echo $i: $recfiles[$i]
printf \t; date -d @(echo $recfiles[$i] | cut -d_ -f3)
echo \t$reclines[$i]
echo \t$recfolds[$i]
end
end