dotfiles/fish/.config/fish/functions/rmdot.fish

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
212 B
Fish
Raw Permalink Normal View History

function rmdot --description "Remove all dot files from GST_DEBUG_DUMP_DOT_DIR"
if test -d "$GST_DEBUG_DUMP_DOT_DIR"
for i in "$GST_DEBUG_DUMP_DOT_DIR"/*.dot
rm $i
end
end
end