Hi,
I have created a command to convert a selected PNG file to JPG and it works:
command! convertPngInJpg mogrify -format jpg %f
How to delete the PNG file after processing ?
I 've tried:
command! convertPngInJpg mogrify -format jpg %f | rm %f
without success ... does rm need special syntax in the vifmrc file?
thx