▲ 16 ▼ simple sorting programm for Linux (github.com) submitted 1 week ago by metw0@lemmy.world to c/programming@programming.dev 11 comments fedilink hide all child comments wrote CLI in C++ to sort files. it's very simple, just download and use. if you a photographer, video editor or just need to sort some files, you welcome (link in post)
[–] bobo@lemmy.ml 4 points 1 week ago (1 child) Source? I tried searching for it and found nothing. permalink fedilink source parent hideshow 2 child comments replies: [–] BB_C@programming.dev 7 points 1 week ago I think the other user meant that ls output is not supposed to be treated as parsable, because the tool doesn't offer any guarantees in that regards. Shells have built-in support for globbing files anyway. xargs is also not needed. If someone is allergic to using a shell for loop, find always had -exec with ; instead + which wouldn't trip on too many arguments. permalink fedilink source parent
[–] BB_C@programming.dev 7 points 1 week ago I think the other user meant that ls output is not supposed to be treated as parsable, because the tool doesn't offer any guarantees in that regards. Shells have built-in support for globbing files anyway. xargs is also not needed. If someone is allergic to using a shell for loop, find always had -exec with ; instead + which wouldn't trip on too many arguments. permalink fedilink source parent