feat: initial commit.

This commit is contained in:
2025-10-28 11:54:35 -04:00
commit 98400ab0df
5 changed files with 221 additions and 0 deletions

19
mod.nu Executable file
View File

@@ -0,0 +1,19 @@
#!/usr/bin/env nu
# Manage your .env files with ease
def main [] {
}
def "main get" [
file: path
] {
cd (dirname $file);
{
path: $file
dir: (pwd)
remotes: (git remote | lines | each { git remote get-url $in })
contents: (open $file --raw)
}
}