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
- Host: GitHub
- URL: https://github.com/missn0body/sfn
- Owner: missn0body
- License: gpl-3.0
- Created: 2023-10-02T16:16:51.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-31T04:00:03.000Z (over 1 year ago)
- Last Synced: 2025-02-07T12:14:32.008Z (8 months ago)
- Topics: console-application, dos, terminal, terminal-based
- Language: C
- Homepage:
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.