npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@josephuspaye/dub

v0.1.2

Published

Quickly rename multiple files from the command line, using a glob or regular expression.

Downloads

2

Readme

Dub

Quickly rename multiple files from the command line, using a glob or regular expression, with support for variable substitution and automatic case transformation.

This project is part of #CreateWeekly, my attempt to create something new publicly every week in 2020.

Installation

npm install @josephuspaye/dub --global

Examples

The following examples change all matching files in the current directory.

Rename all PDF files to title case

dub "*.pdf" "{1:title}.pdf"

| Before | After | | :------------------------------------------------------ | :------------------------------------------------------ | | final_projectReport.pdf | Final Project Report.pdf | | The_School_Based_Lived_Experiences_of_Adolescents.pdf | The School Based Lived Experiences of Adolescents.pdf |

More case transformations are available. See Case transformation of variables below.

Change the extension of all .jpeg files to .jpg

dub "*.jpeg" "{1}.jpg"

| Before | After | | :------------------------------------------- | :------------------------------------------ | | WhatsApp-Image-2019-05-07-at-16.01.31.jpeg | WhatsApp-Image-2019-05-07-at-16.01.31.jpg | | twitter-avatar.jpeg | twitter-avatar.jpg |

Rename all subtitle files to show they're in English

dub "*.srt" "{1}.eng.srt"

| Before | After | | :---------------------------------------------- | :-------------------------------------------------- | | Westworld - S03E03 - The Absence of Field.srt | Westworld - S03E03 - The Absence of Field.eng.srt | | Westworld - S03E08 - Crisis Theory.srt | Westworld - S03E08 - Crisis Theory.eng.srt |

Number all files, padded to three digits

dub "*" "{00i} - {1}"

| Before | After | | :----------------- | :----------------------- | | Report 2016.xlsx | 001 - Report 2016.xlsx | | Report 2017.xlsx | 002 - Report 2017.xlsx | | Report 2018.xlsx | 003 - Report 2018.xlsx |

Remove the word "draft" from the name of all files

dub "*draft*" "{1}{2}"

| Before | After | | :------------------------------------ | :------------------------------ | | Quarterly earnings draft report.pdf | Quarterly earnings report.pdf | | Assignment 3 draft.docx | Assignment 3.docx |

Usage

Description
  Rename files matching the <from> pattern to new names derived from the <to> template.
  Run `npm repo @josephuspaye/dub` for details.

Usage
  $ dub <from> <to> [options]

Options
  -d, --dry        Performs a dry run. Will show what the renamed files will be without actually renaming any files.
  -e, --regex      Matches <from> as a JS regular expression (excluding // delimiters). By default, <from> is matched as a glob pattern.
  -f, --files      Matches files only. By default, both files and directories are matched.
  -i, --dirs       Matches directories only. By default, both files and directories are matched.
  -v, --version    Displays current version
  -h, --help       Displays this message

Examples
  $ dub "*.jpg" "{00i} {1}.jpg"
  $ dub "*.srt" "{1}.eng.srt"
  $ dub "*.mp4" "{1:title}.mp4"

<from> pattern

<from> defines a pattern that is used to match files to rename. The pattern can be a glob or JavaScript regular expression (using the --regex option).

When using a glob, the match of each wildcard is captured, and can be substituted as a variable in the <to> template. For example, the pattern *-*.txt will match all text files with a hyphen in their name. Everything before the hyphen will be captured as the variable 1, and everything after will be captured as 2. These can be substituted as {1} and {2} respectively in the template.

When using a regular expression, the result of capturing groups can be substituted as a variables in the <to> template. The result of the first capturing group will be the variable 1, the second will be 2, the third will be 3, etc. These can be substituted as {1}, {2}, {3}, etc respectively in the template.

<to> template

<to> defines a template with zero or more variables that is used to generate the new file names. Variables captured from the <from> pattern can be used in the template by wrapping their names in { and }. When the files are renamed, those variables are replaced with the string matched in the original file name.

For example, given a file named the best way to predict the future is to invent it.txt, a <from> pattern of * best * invent * will match the file and capture the following variables:

| Name | Value | | :--- | :-------------------------------- | | 1 | the | | 2 | way to predict the future is to | | 3 | it.txt |

Using the above with the <to> template {1} easiest {2} prevent {3} will result in the new name the easiest way to predict the future is to prevent it.txt.

Counter variables

The special variable i can be used to insert a counter, which will start at 1 and go up to the number of files being renamed. When using the counter variable, the letter i can be prefixed with any number of zeroes to indicate that the counter should be zero-padded.

For example, the template {00i} will produce 001, 002, 003, ..., 010, 011, 012, ..., 100, 101, 102, etc.

Case transformation of variables

The casing of matched variables (excluding counter variables) can be changed. This is done by adding a : followed by the name of the case to change to. For example {1:upper} will change the value of the variable 1 to upper case.

The following cases are available:

| Case | Description | | :--------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | camel | Changes the text into a string with the separator denoted by the next word capitalized. Example: Brienne Of TarthbrienneOfTarth | | capital | Changes the text into a space separated string with each word capitalized. Example: Brienne Of TarthBrienne Of Tarth | | dot | Changes the text into a lower case string with a period between words. Example: Brienne Of Tarthbrienne.of.tarth | | header | Changes the text into a dash separated string of capitalized words. Example: Brienne Of TarthBrienne-Of-Tarth | | kebab | Changes the text into a dash separated string of lower cased words. Example: Brienne Of Tarthbrienne-of-tarth | | lower | Changes the text to lower case. Example: Brienne Of Tarthbrienne of tarth | | pascal | Changes the text into a string of capitalized words without separators. Example: Brienne Of TarthBrienneOfTarth | | sentence | Changes the text into lower case with spaces between words, then capitalizes the string. Example: Brienne Of TarthBrienne of tarth | | snake | Changes the text into a lower case string with underscores between words. Example: Brienne Of Tarthbrienne_of_tarth | | sponge | Changes the text to sponge case (random capitalization). Example: Brienne Of TarthbRIEnNE oF TarTh | | swap | Changes the text by changing lower case letters into upper case, and vice-versa. Example: Brienne Of TarthbRIENNE oF tARTH | | title | Changes the text to title case following English rules. Example: Brienne Of TarthBrienne Of Tarth | | upper | Changes the text to upper case. Example: Brienne Of TarthBRIENNE OF TARTH |

Licence

MIT