An open API service indexing awesome lists of open source software.

https://github.com/missn0body/sfn

A terminal program to generate an 8.3 DOS filename from a command-line argument
https://github.com/missn0body/sfn

console-application dos terminal terminal-based

Last synced: 6 months ago
JSON representation

A terminal program to generate an 8.3 DOS filename from a command-line argument

Awesome Lists containing this project

README

          

# sfn (Short FileName)

To get back to that good 'ol days of "Abort, Retry, Fail?"
First written by anson in the summer of 2023.

This is a short .c program featuring one main() function
and a converter function, which is designed to convert
passed strings representing hypothetical (or real perhaps)
filenames to 8.3 short DOS filenames using Microsoft's
standards.

This program will not modify any filenames or any files, and
only prints results to stdout. `sfn` is mainly a visualization
tool.

Usage and options can be read by invoking `sfn --help` at the
command line. This project is licensed under the MIT License, See
LICENSE for related details. Issues, bugs, and other things can be
discussed at my E-Mail,

### v.1.0.0 (First release)

(October 2, 2023)
The initial public release of 'sfn'.
Converts a command-line argument into an 8.3 filename.

### v.1.0.2

(April 2024)
Converts a command-line argument into an 8.3 filename.
* Reworked entire program
* Fixed specific fatal, hard-to-discern bugs

### v.1.0.5

(May 2024)
Converts a command-line argument into an 8.3 filename.
* Slight refactoring for code organization
* Fixed bug where paths being passed as input were not being resolved.