mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 16:51:34 +02:00
7 lines
176 B
Fish
7 lines
176 B
Fish
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
|