Skip to content
ThinkforceOne

ThinkforceOne

Solutions to help you achieve more with your tools.

  • Home
  • Windows
  • Mac OS
  • MS Office
  • TextScript
  • Printing
  • CAD
  • Design
  • Hardware
  • About
  • Toggle search form

iOS iPhone Bash Bulk Rename file extensions

Posted on 2023-03-222023-03-22 By Alan Salihi

In this example, we change the file extension of multiple files from .txt to .md. The files are located in sub directories. This is known as bulk rename file extensions recursively.

On iOS, download the iSH app from the > App Store.

Copy the files

Using iOS’s native Files app, we copy the text files in their complete folder structure to the iSH folder.
Use the Share button to copy the files between apps.

Run the iSH app

On the command line, we will navigate to the top level folder where we placed our files in it.

At first, let’s check if you can list all the .TXT text files under that folder structure. Use the following command:

find . -type f -name "*.txt"

Rename file extensions

Then we rename them all to .MD markdown extension.

The code for renaming the files/ changing their file name extensions is found on this post on > StackOverflow:

find . -type f -name "*.txt" -exec sh -c 'mv "$1" "${1%.txt}".md' - '{}' \;
Post Views: 21
iOS Tags:extension, iphone, ish, md, rename, shellscript, txt

Post navigation

Previous Post: Useful Mac OS Keyboard Shortcuts
Next Post: Copy File Path on macOS

Related Posts

Vertical/Portrait Videos in iMovie iOS iOS

Share this

CATAGORIES

Categories

  • AutoCAD
  • CAD
  • Canva
  • Design
  • Hardware
  • iOS
  • Mac OS
  • MS Excel
  • MS Office
  • MS OneNote
  • MS Word
  • PDF
  • Printing
  • Tech
  • TextScript
  • Uncategorized
  • Windows
POSTS

Post

  • December 2024
  • November 2024
  • June 2024
  • May 2024
  • April 2024
  • February 2024
  • December 2023
  • August 2023
  • April 2023
  • March 2023
  • December 2022
  • November 2022
  • July 2022
  • June 2022
  • May 2022

About

  • Privacy Policy
  • About
  • Contact
  • Copyrights

Connect with us

  • Facebook
  • Twitter
  • Instagram
  • YouTube
March 2023
M T W T F S S
 12345
6789101112
13141516171819
20212223242526
2728293031  
« Dec   Apr »

Copyright © 2025 ThinkforceOne.

Powered by PressBook Grid Blogs theme

We are using cookies to give you the best experience on our website.

You can find out more about which cookies we are using or switch them off in .

ThinkforceOne
Powered by  GDPR Cookie Compliance
Privacy Overview

This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.

Strictly Necessary Cookies

Strictly Necessary Cookie should be enabled at all times so that we can save your preferences for cookie settings.

If you disable this cookie, we will not be able to save your preferences. This means that every time you visit this website you will need to enable or disable cookies again.