feat: added secret copy command to nushell configuration

This commit is contained in:
Ceferino Patino 2025-10-02 13:14:12 -05:00
commit b328d0bc58
No known key found for this signature in database

View file

@ -52,3 +52,11 @@ def take [path: string] {
mkdir $path
cd $path
}
# secret copy command
def sc [path: string] {
["/run/secrets" $path]
| path join
| open
| wl-copy
}