frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Open in hackernews

Show HN: F2 – Cross-Platform CLI Batch Renaming Tool

https://github.com/ayoisaiah/f2
122•ayoisaiah•1mo ago
Hey HN!

I'm excited to share f2, a command-line tool I built for fast and flexible bulk renaming of files. It's cross-platform (Linux, macOS, Windows), executes a dry-run by default, supports undo, and provides great flexibility in file renaming with several built-in variables and Exiftool integration.

I hope you find it useful!

Comments

simonw•1mo ago
I really like your CLI design here, clearly extremely well thought out, lots of great taste on display here: https://f2.freshman.tech/guide/tutorial

The EXIF stuff to create folders based on the date photos were taken is fantastic! https://f2.freshman.tech/guide/organizing-image-library

This tool solves a problem that I face all the time, I am definitely going to be using this often.

ayoisaiah•1mo ago
Thanks a lot Simon! I'm really thrilled to hear it's hitting the mark for you :)
otterpro•1mo ago
Wow, it can integrate with exiftool. I use exiftool to rename photo files, but I think f2 offers more flexible renaming features.
nine_k•1mo ago
Dry-run by default! Use of metadata like EXIF! Undo!

Here's some great product and UX chops, not just coding chops.

bsnnkv•1mo ago
Incredible name choice here - it's very rare that I get this feeling associating a new project with its name. I'm filled with feelings that touch on nostalgia, utility, UX design history and computing heritage when I hear the name F2 associated with a batch renaming tool. Great job!
ayoisaiah•1mo ago
Thank you! I knew I had a winner the moment it popped into my head :)
nine_k•1mo ago
It's indeed a name that immediately rings the right bell, without being an ungoogleable common noun or verb. Kudos.

(Though for those of us who cut their teeth on tools like Norton Commander on the original IBM PC, the association would be with F6.)

jiehong•1mo ago
Oh! Then maybe that’s why IntelliJ likes Shift+F6 for renaming by default?
sorenjan•1mo ago
For photos, I'm guessing you can use Exiftool's built in geolocation feature to add the city and country first.

https://exiftool.org/geolocation.html

devrandoom•1mo ago
Wow, this goes instantly to my toolbox. Thanks for writing this and sharing it!

It only happens a few times a year that I need to batch rename. Buy when I do my adrenaline levels go up by about two espressos.

sandreas•1mo ago
Awesome tool, thanks for sharing. One feature I would love to see on renaming tools is the following:

  -A - Sample of the of the ACTUAL file name
  -B - Sample of the desired filename
e.g.

  f2 -A 001.pdf -B 001_renamed.pdf
and this would automatically determine that every file with this "pattern" (001) should get the renamed prefix, so:

  001.pdf => 001_renamed.pdf
  002.pdf => 002_renamed.pdf
  ...
Sounds weird, but there once was a tool written in dotnet that used machine learning techniques to achieve exactly this and it worked like a charm. Unfortunately I lost the reference and never found it again.

Most important: Worked locally and did not send the filenames to chatGPT ;)

ayoisaiah•1mo ago
You can already do this with F2 by using capture variables:

  f2 -f '(\d+).pdf' -r '{$1}_renamed.pdf'
Does that align with what you're looking for?
sandreas•1mo ago
Thank you, unfortunately, that's not the point :-) I knew I could do this with a regex.

The advantage of using a sample instead of a regex is, that you don't need to think about it. I have "this.pdf" and I want "that.pdf" is way easier than developing a regex that matches the parts I need replacing it with what I want.

The tool I mentioned afaik used machine learning to determine a valid regex from a given sample automagically somehow (see [1]), which was then applied to the files it found, followed by a preview and a choice to either perform or abort. You could also provide more examples, if it did not succeed determining the regex in the first place to be more specific:

   f2 -A 001.pdf -B 001_renamed.pdf -A 002.pdf -B 002_renamed.pdf
It was awesome, unfortunately otherwise not suitable for my needs (windows only or something)

I should have saved it somewhere to re-implement it myself. The only things I remember are, that it was dotnet based, using the dotnet machine learning libs and it was a command line tool. Maybe it was called `ab` because you could provide the parameter -A sample -B destination, but I did not find anything on github.

If I ever find it again, I'll let you know in a github issue.

1: https://stackoverflow.com/questions/616292/is-it-possible-fo...

037•1mo ago
Very interesting, I’ll definitely give it a try!

Another approach I recently discovered is an old but beautiful Unix-style tool for renaming files: vidir - edit a directory in your text editor. It’s part of the moreutils suite [1].

You get the list of filenames in your editor – edit them as you like, save, exit, and it renames the files. It uses whatever editor is set in your $EDITOR env var, so it doesn’t have to be vi/vim.

You can also pipe in a list of files, e.g. `find . -type f | vidir -`, to edit just the files you want - and you can even change paths (add, rename, remove directories) in the editor to move files around easily.

To try it quickly on macOS: `brew install moreutils`

[1] https://joeyh.name/code/moreutils/

ddlsmurf•1mo ago
if you can forgive a shameless plug, I wrote https://github.com/ddlsmurf/fled some time ago and it serves me very well to this day. (It's not half as advanced as OP's tool but still useful)
robertlutece•1mo ago
oh wow, this feels like https://github.com/stevearc/oil.nvim
chiffaa•1mo ago
> You get the list of filenames in your editor – edit them as you like, save, exit, and it renames the files. It uses whatever editor is set in your $EDITOR env var, so it doesn’t have to be vi/vim.

I'm not sure how "powerful" vidir is, but I recently found this functionality in yazi [1] and it became one of those "you think you don't need it until you try it" features

[1] https://github.com/sxyazi/yazi

jiehong•1mo ago
This is also integrated into Emacs with dired, and it’s pretty neat [0].

[0]: http://xahlee.info/emacs/emacs/rename_file_pattern.html

porridgeraisin•1mo ago
Really nice, wow.

Honestly I don't see myself remembering and using the variables features(which gives the exiftool feature others here are raving about) but it's already insanely good without that. Love the ability to refine your selection with further -f flags. Also the ability to rename while create nested paths is so good.

Suggestion, having an "up"[1] mode where you can see the dry run output in a live updating thing when you are adding further -fs and -rs.

[1] https://github.com/akavel/up

batrat•1mo ago
In windows I use PowerToys - power rename to rename files. But I'm not a power user I rarely need renaming something.
hoppp•1mo ago
The undo functionality is a nice touch. I know cuz I write scripts to rename files and made mistakes before.
j1elo•1mo ago
Small typo: the example given for "--replace-limit -1" reads:

    abc_abc.txt | 123_abc.txt
but it should probably say:

    abc_abc.txt | abc_123.txt
Funnily enough, the triplet example given in the tutorial for "--replace-limit" [1] (replacing either the first or the last of "abc_abc_abc") is written so that it has the effect of driving the reader to wonder "Ok but, what about the middle one????" :)

A small idea for an alternative, more flexible option: "--replace-range", where you could use a well established syntax to represent ranges such as the one from Python and Go slices, so it's not only possible to replace from the leftmost or rightmost but also in-between.

[1]: https://f2.freshman.tech/guide/tutorial#limiting-the-number-...

Hasnep•1mo ago
Thanks for making f2, I've been using it for a while and it's saved me so much time!
majkinetor•1mo ago
FYI, Double Commander (x-platform, foss) has Multi Rename Tool which is clone of Total Commanders feature. It supports AFAICS all the feature of F2 + plugins that can get arbitrary info about files.

https://doublecmd.github.io/doc/en/multirename.html

Freed from ICE detention, Mahmoud Khalil files $20M claim against Trump admin

https://apnews.com/article/mahmoud-khalil-ice-release-trump-columbia-protests-570f7af32010c16b1a00dd7e78f4c687
1•sandbach•26s ago•0 comments

Show HN: WTMFAi – Join for Waitlist and

https://wtmf.ai
1•ishqdehlvi•5m ago•0 comments

Climate science in a rapidly changing world

https://arstechnica.com/science/2025/07/ars-live-recap-climate-science-in-a-rapidly-changing-world/
1•Bluestein•8m ago•0 comments

Open source BITS protocol implementation using Django

https://gitlab.com/thrax-labs/django-bits
1•maboxeel•9m ago•0 comments

What Did CapCut Change in Its 2025 Terms of Service?

https://www.isabokelaw.com/blog/capcuts-new-terms-of-service-what-every-content-creator-needs-to-know
1•taubek•9m ago•0 comments

Study in Canada to Cost More, Indians Must Show Rs 14 Lakh for Living Expenses

https://www.study-from-here.com/2025/07/study-in-canada-to-cost-more-indians.html.html
1•BhattMayurJ•10m ago•0 comments

Bold Mission to Hunt for Aliens on Venus Is Happening

https://gizmodo.com/a-bold-mission-to-hunt-for-aliens-on-venus-is-actually-happening-2000627704
1•Bluestein•10m ago•0 comments

DIY Navigation System Floats This Boat

https://hackaday.com/2025/07/10/diy-navigation-system-floats-this-boat/
1•SailingSeahorse•12m ago•0 comments

Speak 11 languages confidently with science-based tools and AI coaching

https://mashable.com/deals/july-11-mosalingua-premium-language-learning
1•Bluestein•12m ago•0 comments

Air France-KLM to increase intelligence of bots that have saved 200k hours

https://www.computerweekly.com/news/366627136/Air-France-KLM-to-increase-intelligence-of-bots-that-saved-200000-hours
1•latein•14m ago•1 comments

Cybersecurity's global alarm system is breaking down

https://www.technologyreview.com/2025/07/11/1119370/cybersecurity-alarm-system-breaking-down/
3•unripe_syntax•18m ago•0 comments

Perspective: A data visualization and analytics component for large datasets

https://perspective.finos.org/
1•huerne•18m ago•0 comments

New Software from 'Ruđer' for Faster Supercomputer Simulations

https://www.irb.hr/eng/News/New-Software-from-Ruder-for-Faster-Supercomputer-Simulations
2•taubek•20m ago•0 comments

The Big Beautiful Bill will kill one profession: Gambling

https://www.economist.com/united-states/2025/07/10/the-big-beautiful-bill-will-kill-one-profession
5•helsinkiandrew•20m ago•1 comments

Native array_first() and array_last() Functions in PHP 8.5

https://laravel-news.com/native-array-first-and-array-last-functions-in-php-85
1•speckx•20m ago•0 comments

Tandy Corporation, Part 3 Becoming IBM Compatible

https://www.abortretry.fail/p/tandy-corporation-part-3
2•klelatti•20m ago•0 comments

NeuroKit AI – Curated Directory of 1000 AI Tools and Model Data

https://www.neurokitai.com/en
2•RobertChin•21m ago•1 comments

Personal Reflections on Immutable Linux

https://hackaday.com/2025/07/10/personal-reflections-on-immutable-linux/
1•tenkabuto•23m ago•0 comments

GPX Studio. Show, edit GPX files, route planning, file processing tools, MIT Lic

https://gpx.studio
1•nuker•24m ago•1 comments

Key Event Receipt Infrastructure (KERI): A fully decentralized identity system

https://keri.one/
1•rapnie•26m ago•0 comments

What Does It Mean to Orange-Pill Someone? (2022)

https://www.nasdaq.com/articles/what-does-it-mean-to-orange-pill-someone
1•austinallegro•26m ago•0 comments

Show HN: I built AI Email Writer – Let AI help you write better Emails

https://writemail.app
1•funcin•28m ago•2 comments

Whimsical Animations

https://whimsy.joshwcomeau.com/
1•bluehatbrit•30m ago•0 comments

Show HN: Online Photo Gallery

https://www.newurgency.art
1•Stepanchykov•32m ago•0 comments

Show HN: A decentralized command line key-value store on Nostr

https://github.com/chr15m/nkv
2•chr15m•34m ago•0 comments

Huawei's Pura 80 roll-out in Dubai is latest move in global smartphone push

https://www.scmp.com/tech/big-tech/article/3317843/huaweis-pura-80-series-roll-out-dubai-latest-move-global-smartphone-push
1•outrunner•41m ago•0 comments

Ask HN: How do I get traffic and distribution for my app cheaply?

2•notlemon•43m ago•2 comments

Apache Fory Serialization Framework 0.11.2 Released

https://github.com/apache/fory/releases/tag/v0.11.2
2•chaokunyang•46m ago•0 comments

Data Over Time – some tips on dealing with the challenges of temporal data

https://blog.julik.nl/2025/07/data-over-time
1•julik•46m ago•1 comments

Ultra-thin bendy solar panels are so light you can wear them

https://www.cnn.com/science/perovskite-solar-cells-expo-vests-hnk-spc
1•outrunner•49m ago•0 comments