fif/README.md

109 lines
3.9 KiB
Markdown
Raw Normal View History

fif
===
[![Version](https://img.shields.io/crates/v/fif.svg?logo=rust&style=flat-square)
](https://crates.io/crates/fif)
2021-04-21 07:29:13 +00:00
[![Minimum Supported Rust Version](https://img.shields.io/badge/msrv-1.43.0-orange?logo=rust&style=flat-square)
](https://crates.io/crates/fif)
[![License](https://img.shields.io/crates/l/fif.svg?style=flat-square)
2021-04-21 07:29:13 +00:00
](https://gitlab.com/Lynnesbian/fif/-/blob/master/LICENSE)
[![Build status](https://img.shields.io/drone/build/lynnesbian/fif?logo=drone&server=https%3A%2F%2Fdrone.bune.city&style=flat-square)
2021-04-21 07:29:13 +00:00
](https://gitlab.com/Lynnesbian/fif/-/blob/master/README.md)
[![Unsafe forbidden](https://img.shields.io/badge/unsafe-forbidden-success.svg?style=flat-square)
](https://github.com/rust-secure-code/safety-dance/)
2021-02-21 16:15:35 +00:00
A command-line tool for detecting and optionally correcting files with incorrect extensions.
2021-04-06 15:47:12 +00:00
fif recursively scans the given directory and outputs a shell script to fix the name of any files with incorrect
extensions. By default, fif will scan all non-hidden files in the given directory, and will ignore symlinks.
As fif prints a shell script to stdout rather than acting on the files directly, you may wish to redirect its output to
a file, e.g. `fif ~/Documents > output.sh`. You can also pipe the output directly into your shell, e.g.
`fif ~/Documents | bash`, although this is not recommended - you should look over fif's output and verify for yourself
that it's not doing anything that will give you a headache before running it.
## Installation
2021-04-06 15:47:12 +00:00
### Cargo
```bash
cargo install --locked fif
```
2021-04-06 15:47:12 +00:00
To update, simply re-run this command, or use a tool like
[cargo-update](https://github.com/nabijaczleweli/cargo-update).
#### Other backends
`fif` supports using [`infer`](https://crates.io/crates/infer) or [`xdg-mime`](https://crates.io/crates/xdg-mime) as its
backend for looking up file types. By default, xdg-mime will be used on
[*nix systems](https://en.wikipedia.org/wiki/Unix-like) (Linux, macOS, *BSD, etc.), and infer on all other systems.
2021-02-27 02:43:15 +00:00
2021-04-06 15:47:12 +00:00
`xdg-mime` should work on any *nix system with [libmagic/file(1)](https://www.darwinsys.com/file/) installed, although
I've only tested it on Linux and FreeBSD. `infer` should work on any system.
2021-02-27 02:43:15 +00:00
You can override the default backend for your system at compile time like so:
```bash
# xdg-mime
2021-04-06 15:47:12 +00:00
cargo install fif --features=xdg-mime-backend
2021-02-27 02:43:15 +00:00
# infer
2021-04-06 15:47:12 +00:00
cargo install fif --features=infer-backend
```
Of the supported backends, `xdg-mime` by far supports the most file types, as it uses the excellent [Shared MIME
Info](https://gitlab.freedesktop.org/xdg/shared-mime-info/) database, whereas `infer` uses its own baked-in database.
However, `infer` is also faster to load, if only by a few dozen milliseconds, and has no external dependencies.
#### Multithreading
It is also possible to disable multithreading by installing without default features:
```bash
cargo install fif --no-default-features
2021-02-27 02:43:15 +00:00
```
## Usage
2021-02-21 16:08:08 +00:00
See `fif --help` for more.
2021-04-06 15:47:12 +00:00
### Logging
By default, fif will log any warnings and/or errors encountered during execution. The verbosity of the logging can be
modified by the `RUST_LOG` to one of: `trace`, `debug`, `info`, `warn`, `error`.
For example:
```bash
RUST_LOG=debug fif ~/Downloads
```
2021-02-21 16:08:08 +00:00
### The basics
The simplest way to use fif looks like this:
2021-04-06 15:47:12 +00:00
2021-02-21 16:08:08 +00:00
```bash
2021-04-06 15:47:12 +00:00
fif ~/Downloads
2021-02-21 16:08:08 +00:00
```
2021-04-06 15:47:12 +00:00
This command will scan all non-hidden files in your `~/Downloads` directory.
2021-02-21 16:08:08 +00:00
You can also manually specify a set of extensions to use:
```bash
2021-02-21 16:08:08 +00:00
fif -e jpeg,jpg,zip,docx ~/Documents
```
2021-04-06 15:47:12 +00:00
Or a set of extensions - for example, to scan files with image extensions (jpg, png, gif, bmp...):
```bash
fif -E images ~/Pictures
```
### Output
By default, fif will output a bash script (or PowerShell script on Windows) that can be used to fix all the files it
found with incorrect file extensions.
2021-02-21 16:08:08 +00:00
You might find it useful to output this script to a file (rather than to stdout):
```bash
fif -E images ~/Pictures > output.sh
```
2021-02-27 02:43:15 +00:00
2021-04-06 15:47:12 +00:00
You can also manually specify an output format to use:
```bash
fif -O powershell ~/Documents > output.ps1
```