all repos — nixfiles @ a2d6adfa523a32e1f8c184602eec555365bc02c9

System and user configuration, managed by nix and home-manager

user/settings/fish/functions/oldest.fish (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
function oldest
    if test (count $argv) -eq 0
        echo "Need at least one path"
        return 1
    end
    for arg in $argv
        if test -d $arg
            fd --hidden --print0 --max-depth 1 . $arg |
                bfs -files0-from - \( -name .git -prune \) -o \( -printf '%TY%Tm%Td%TH%TM %TF %h/%f\n' \) |
                sort --key 1n,1 | head --lines 1 |
                cut -d ' ' -f 2,3
        end
    end
end