Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Post History

28%
+0 −3
Q&A Recursively remove files with the same name as the ones that end in `.part`

For each file named foo.xyz, you want to delete foo.xyz.part. It doesn't matter if foo.xyz.part exists, you can just attempt it and skip errors. You can get a list of all files with find etc. But ...

posted 11mo ago by matthewsnyder‭  ·  edited 11mo ago by matthewsnyder‭

Answer
#2: Post edited by user avatar matthewsnyder‭ · 2023-06-11T23:50:41Z (11 months ago)
  • For each file named `foo.xyz`, you want to delete `foo.xyz.part`. It doesn't matter if `foo.xyz.part` exists, you can just attempt it and skip errors.
  • You can get a list of all files with `find` etc. But you don't want the ones with `.part`, so you use grep to take them out: `find | grep -v '\.part$'`. `$` means end of string and `\.` is because otherwise `.` means any character in regex.
  • You can then attempt to [delete each one](https://linux.codidact.com/posts/288310#answer-288311): `find | grep -v '\.part$' | parallel rm {}`
  • If the file doesn't exist, Parallel will show you the error message, but it will still delete the ones that do exist. You can do a bunch of extra filtering with `comm`, but there's no need.
  • For each file named `foo.xyz`, you want to delete `foo.xyz.part`. It doesn't matter if `foo.xyz.part` exists, you can just attempt it and skip errors.
  • You can get a list of all files with `find` etc. But you don't want the ones with `.part`, so you use grep to take them out: `find | grep -v '\.part$'`. `$` means end of string and `\.` is because otherwise `.` means any character in regex.
  • You can then attempt to [delete each one](https://linux.codidact.com/posts/288310#answer-288311): `find | grep -v '\.part$' | parallel rm {}`
  • If the file doesn't exist, Parallel will show you the error message, but it will still delete the ones that do exist. You can do a bunch of extra filtering with `comm` to only attempt to delete those files which do exist, but there's no need in this case.
#1: Initial revision by user avatar matthewsnyder‭ · 2023-06-11T23:50:19Z (11 months ago)
For each file named `foo.xyz`, you want to delete `foo.xyz.part`. It doesn't matter if `foo.xyz.part` exists, you can just attempt it and skip errors.

You can get a list of all files with `find` etc. But you don't want the ones with `.part`, so you use grep to take them out: `find | grep -v '\.part$'`. `$` means end of string and `\.` is because otherwise `.` means any character in regex.

You can then attempt to [delete each one](https://linux.codidact.com/posts/288310#answer-288311): `find | grep -v '\.part$' | parallel rm {}`

If the file doesn't exist, Parallel will show you the error message, but it will still delete the ones that do exist. You can do a bunch of extra filtering with `comm`, but there's no need.