1
0
Fork 0

feat: revamp

This commit is contained in:
cătălin 2023-04-24 12:47:11 +02:00
commit f56d076f52
Signed by: catalin
GPG key ID: 0178DF42F43E5FD2
32 changed files with 127 additions and 831 deletions

View file

@ -0,0 +1,7 @@
function envsource
for line in (cat $argv | grep -v '^#')
set item (string split -m 1 '=' $line)
set -gx $item[1] $item[2]
echo "Exported key $item[1]"
end
end