Conversation
Notices
-
kaia (kaia@brotka.st)'s status on Wednesday, 13-Sep-2023 20:41:34 JST kaia so what does one do in the Linux terminal if one has a large folder of images and there's 美丽.png. how do you rename that? -
eal (eal@post.ebin.club)'s status on Wednesday, 13-Sep-2023 20:41:30 JST eal @hakui @kaia it's for girls that do this pose LS likes this. -
御園はくい (hakui@tuusin.misono-ya.info)'s status on Wednesday, 13-Sep-2023 20:41:31 JST 御園はくい @eal @kaia i see you too have a folder named zoi -
eal (eal@post.ebin.club)'s status on Wednesday, 13-Sep-2023 20:41:32 JST eal @kaia also in fish shell tab completing an empty string gives you a nice list of files you can browse through, kanji end up at the end of the list (sorted alphabetically) so you can just shift-tab to get to them -
eal (eal@post.ebin.club)'s status on Wednesday, 13-Sep-2023 20:41:33 JST eal @kaia change to my jp input method, write 美 and press tab to complete the rest of the file
there's also some TUI file managers like midnight commander that might be helpful -
Disinformation Purveyor :verified_think: (thatguyoverthere@shitposter.club)'s status on Wednesday, 13-Sep-2023 20:56:42 JST Disinformation Purveyor :verified_think: @kaia you might be able to use find to identify a file that doesn't include any Latin characters before .png and use -exec mv {} newname.jpg (assuming only one file matches the search). -
Disinformation Purveyor :verified_think: (thatguyoverthere@shitposter.club)'s status on Wednesday, 13-Sep-2023 21:00:12 JST Disinformation Purveyor :verified_think: @kaia find /path -regex '^[^a-zA-Z0-9]+\.png' or something like that
-
Disinformation Purveyor :verified_think: (thatguyoverthere@shitposter.club)'s status on Wednesday, 13-Sep-2023 21:02:17 JST Disinformation Purveyor :verified_think: @kaia you probably would want to use -ls or something first before firing the move command to make sure it matches your target.
-