I run Mylar on my Xubuntu server to manage my comic collection. I found out recently that there’s a tool that can convert the embedded .jpgs to .webp to save space, but it only works on cbz files and not cbr (zipped vs rar for those who don’t know). I wanted to convert all of my cbr to cbz so that I could run the tool on all my comics, so I needed to search hundreds of subdirectories for them and move them to the same folder to be processed.

Under Windows, I’d just type *.cbr into the search bar built into Explorer from the root comic directory, hit enter to get a list of files, select them all, and move them to the new folder. On Xubuntu, it’s nothing like as simple.

I found the search option in Thunar which opened Catfish, typed in *.cbr, and got a no files found message. After looking through the very limited options, I started searching for a way to do it. About thirty minutes later I’d found dozens of links telling me to use different, Terminal only, tools, but nothing about how to search subdirectories from the Catfish GUI. Purely by accident, I found a post from 2012 that mentioned the fact that Catfish doesn’t use wildcards, so just search with .cbr, something that’s not mentioned in the official docs.

I tried it, and it searched the subdirectories too, and found my files! Except there was no way to copy or cut and paste, just open, show in file manager, copy location, save as, or delete. No good options for almost 500 files across several dozen locations.

I ended up asking Chat GPT how to do it, and doing it through the Terminal, using this:

‘find . -type f -name “*.cbr” -exec mv {} /path/to/destination ;’

This is pretty basic functionality, and I had to resort to getting help to use the Terminal :(

  • Tippon@lemmy.dbzer0.comOP
    link
    fedilink
    English
    arrow-up
    2
    arrow-down
    2
    ·
    2 years ago

    I knew there would be a way to do it through the terminal, but I was disappointed because what should be a simple file operation couldn’t be carried out with the file manager and search. It’s a very basic task, but I had to change the way I was working to do it. As I’ve said in my other replies, I’ve been running my media server for years, and switched my laptop to Mint full time about two years ago. I grew up on DOS, and am happy using the terminal, but didn’t like the fact that there was no way to do it through the GUI.

    This is the sort of thing that newcomers to Linux are constantly complaining about, and I’ve had a thread full of replies basically saying hur dur, Linux is different, deal with it (not from you, just to clarify).

    • JTode@lemmy.world
      link
      fedilink
      arrow-up
      1
      ·
      2 years ago

      I kinda said that too actually, just maybe in a little more of a supportive, you-got-this way. You came to Linux because you wanted something different, and while the Linux desktop does continue to improve overall, what you did is always where the action will be for operations like the one you did.

      It’s not that it’s the easiest way, full stop - it’s the easiest way to do very complex and powerful operations on the fly, very quickly. If you lean into it for a while it does actually get easy, even.