• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/workflows/H15-Aug-2021-4339

etc/H15-Aug-2021-8569

man/H15-Aug-2021-549545

src/H15-Aug-2021-7,7385,174

table/H15-Aug-2021-656578

tests/H15-Aug-2021-1,772922

.gitignoreH A D15-Aug-2021564 6756

BUILD.mdH A D15-Aug-20212 KiB7954

CHANGELOG.mdH A D15-Aug-20218.7 KiB212177

LICENSEH A D15-Aug-20211.5 KiB3023

Makefile.amH A D15-Aug-20211.4 KiB2922

README.mdH A D15-Aug-20211 KiB4328

THANKS.mdH A D15-Aug-20212.5 KiB7247

configureH A D15-Aug-2021174.6 KiB6,0795,025

configure.acH A D15-Aug-2021411 2015

README.md

1# Overview
2
3`detox` is a program that renames files to make them easier to work with under
4Unix and related operating systems.  Spaces and various other unsafe
5characters (such as "$") get replaced with "_".  ISO 8859-1 (Latin-1)
6characters can be transliterated to ASCII, as can UTF-8 characters.
7More details are contained in the `detox.1` man page.
8
9# Runtime Notes
10
11The most important option to learn is `-n`, aka `--dry-run`.  This will let you
12run `detox` without actually changing any files, so that you can get an idea
13of what `detox` is all about.
14
15The simplest way to run `detox` is to just run it on a directory containing
16files that need work:
17
18	detox xfer_files/
19
20You can also just to specify the filename:
21
22	detox my\ bad\ file.txt
23
24You can also specify recursion (this works best on directories):
25
26	detox -r /music/transferred_from_elsewhere/
27
28# Build
29
30To build `detox` from source, run:
31
32```
33git clone https://github.com/dharple/detox.git
34cd detox
35autoreconf --install
36./configure
37make
38```
39
40# Contact
41
42Doug Harple <detox.dharple@gmail.com>
43