this post was submitted on 16 Sep 2023
38 points (95.2% liked)

Asklemmy

43133 readers
1325 users here now

A loosely moderated place to ask open-ended questions

Search asklemmy πŸ”

If your post meets the following criteria, it's welcome here!

  1. Open-ended question
  2. Not offensive: at this point, we do not have the bandwidth to moderate overtly political discussions. Assume best intent and be excellent to each other.
  3. Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
  4. Not ad nauseam inducing: please make sure it is a question that would be new to most members
  5. An actual topic of discussion

Looking for support?

Looking for a community?

~Icon~ ~by~ ~@Double_[email protected]~

founded 5 years ago
MODERATORS
 

In case of renaming multiple file extensions to another, they suggested to type this command in cmd promt or powershell: ren *.(current extension name) *.(new extension name)

But what about to renaming multiple file extensions to nil or no file extension? How to replace this command *.(new extension name) ?

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 1 points 11 months ago* (last edited 11 months ago) (4 children)
  1. Set up WSL
  2. for file in * ; do mv "$file" $(basename "$file") ; done

Edit: the other commenter is right, I fucked up the usage of basename.

[–] [email protected] 0 points 11 months ago* (last edited 11 months ago) (2 children)

newfile=$(echo $file|sed β€˜s/..*//β€˜)

[–] [email protected] 2 points 11 months ago* (last edited 11 months ago)

That's a bit dangerous for a few reasons:

  1. cat is the wrong command, because it outputs the file's content, not the file's name.
  2. my.awesome.file.txt would become an empty string, leading to errors. (The regex is not anchored to the end of the string ($), the . is not escaped, so it becomes a wild card, ...)
  3. My awesome file.txt would trip up the loop and lead to unwanted results.

I'd suggest this:

for file in * ; do mv β€œ$file” $(echo β€œ$file” | sed -r 's/(\.tar)?\.[^.]*$//') ; done

load more comments (1 replies)
load more comments (2 replies)