>>107887035
Good question. let me check my stash
rg "cp" ~/.local/bin/
I have a wrapper named "makegeglplugin" that auto runs
cp -ri ~/gegl_assistance/new_plugin/ ~/DevelopingGEGL/Final_Filters_here/`
so I can make a new blank plugin instantly from a template
and "sendgeglcode"
cp -r $(find . -name '*.so') ~/.local/share/gegl-0.4/plug-ins/
so I can find all gegl plugin binaries and point them in the folder they belong, no -i so I can auto overwrite.
I also have a command I haven't used in years that I made back in early 2023 that gets REMBG to run from Nomacs
cp "$@" /tmp/bghere.png && rembg i /tmp/bghere.png /tmp/bgremoved.png && sleep 0.5 && nomacs /tmp/bgremoved.png
To learn more about cp man cp