mk

module
v1.7.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 19, 2024 License: Unlicense

README

mk

Simply make files/folders

This command-line tool allows you to create directories and files using a straightforward syntax. Directories are created using the <folder>/ syntax, where <folder> represents the directory name. The .. syntax is used to remove the last added directory from the directory stack. You can create empty files by providing filenames, optionally nested within added directories. mk mantains a directory stack to facilitate creating nested directories and files. View examples.

Tested on Linux (idk if it works on Windows and Mac)

Building

View BUILD.md

Usage

mk [-flags] [..] [folder/] [files...]

  • -flags: View mk -help for info
  • ..: Returns the a directory in the stack.
  • folder/: Creates a directory and add it to the directory stack.
  • files...: Creates files inside the directory stack.

Examples

Example 1

Folder structure:

example/
└── docs/
    └── myfile.txt

To create it we use the following command:

mk example/docs/myfile.txt
Example 2

Folder structure:

example/
├── tool.go
├── README.md
└── files/
    ├── documents/
    │   └── +page.svelte
    ├── projects/
    │   └── go/
    │       ├── main.go
    │       └── README.md
    └── output.txt

To create it we use the following command:

mk example/ tool.go README.md files/ documents/ +page.svelte .. projects/ go/ main.go README.md ... output.txt
mk
    example/      | create a new folder called example/
    tool.go       | create a new file called tool.go inside example/
    README.md     | create a new file called README.md inside example/
    files/        | create a new folder called files/
    documents/    | create a new folder called documents/ inside files/
    +page.svelte  | create a new file called +page.svelte inside documents/
    ..            | return one directory in the stack
    projects/     | create a new folder called projects/ inside documents/
    go/           | create a new folder called go/ inside projects/
    main.go       | create a new file called main.go inside go/
    README.md     | create a new file called README.md inside go/
    ...           | return two directories in the stack
    output.txt    | create a new file called output.txt inside go/
Example 3

Folder structure:

example/
├── documents/
│   └── README.md
└── projects/
    └── README.md

To create it we use the following command:

mk example/ documents/README.md projects/README.md
mk
    example/            | create a new folder called example/
    documents/README.md | create a new file (within a folder called documents/) called README.md inside example/
    projects/README.md  | create a new file (within a folder called projects/) called README.md inside example/

License

This project is under the The Unlicense license

Directories

Path Synopsis
cmd
mk
internal

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL