Skip to content
This repository was archived by the owner on Feb 19, 2025. It is now read-only.

Commit 4ade6c4

Browse files
committed
Minor instructions tweak
1 parent 6daa3f8 commit 4ade6c4

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This tool targets .NET 6 and, for now, needs to be compiled manually.
77
At the minimum, you must specify the number of files you want to generate. This should be an sequence of numbers (with optional commas).
88

99
```
10-
uniquefilegen [filecount]
10+
dotnet run [filecount]
1111
```
1212

1313
### Argument Flags
@@ -24,11 +24,11 @@ Flag | Description
2424
*Examples:*
2525

2626
```
27-
uniquefilegen 50,000 -p Random-
27+
dotnet run 50,000 -p Random-
2828
```
2929
Creates 50,000 files, each named similarly to "Random-########", in a subfolder named "output". There are no file extensions, nor is there a space after the prefix (due to the prefix's ending hyphen).
3030

3131
```
32-
uniquefilegen 100 -p TEST-1229 -e txt -o My Output Folder -s 1000000 -d 1000
32+
dotnet run 100 -p TEST-1229 -e txt -o My Output Folder -s 1000000 -d 1000
3333
```
3434
Creates one hundred 1MB files, each named similarly to "TEST-1229 ##########.txt", with a 1s break between each file's creation, and in a subfolder called "My Output Folder".

UniqueFileGenerator/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ private static void PrintInstructions()
7474
outerTable.AddEmptyRow();
7575

7676
outerTable.AddRow("Examples:\n" +
77-
" uniquefilegen 10\n" +
77+
" dotnet run 10\n" +
7878
" Creates 10 files with the default settings\n" +
79-
" uniquefilegen 1,000 -p TEST-1229 -e txt -o My Output Folder\n" +
79+
" dotnet run 1,000 -p TEST-1229 -e txt -o My Output Folder\n" +
8080
" -s 1000000 -d 1000\n" +
8181
" Creates one thousand 1MB files, each named like\n" +
8282
" \"TEST-1229 ##########.txt\", in a subfolder called\n" +

0 commit comments

Comments
 (0)