function: duplicates

This commit is contained in:
crater2150 2025-11-19 12:08:16 +01:00
parent 8a9503b95a
commit d34af3e194

View file

@ -388,3 +388,7 @@ alias e="nvim -c 'lua require(\"telescope.builtin\").fd { cwd = require(\"findro
if [[ -e ${XDG_CONFIG_HOME}/broot/launcher/bash/br ]]; then
source ${XDG_CONFIG_HOME}/broot/launcher/bash/br
fi
duplicates() {
sort | uniq -c | grep -v '^\s*1'
}