mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-15 12:12:45 +00:00
20 lines
384 B
Fish
20 lines
384 B
Fish
function omf.bundle.add -a type name_or_url
|
|
set -l bundle $OMF_CONFIG/bundle
|
|
|
|
if test -L $OMF_CONFIG/bundle
|
|
set bundle (readlink $OMF_CONFIG/bundle)
|
|
end
|
|
|
|
set -l record "$type $name_or_url"
|
|
|
|
if test -f $bundle
|
|
if not grep $record $bundle > /dev/null 2>&1
|
|
echo $record >> $bundle
|
|
end
|
|
else
|
|
echo $record > $bundle
|
|
end
|
|
|
|
sort -u $bundle -o $bundle
|
|
end
|