oh-my-fish/pkg/omf/functions/bundle/omf.bundle.add.fish

20 lines
389 B
Fish
Raw Normal View History

function omf.bundle.add -a type name_or_url
2016-04-19 00:14:10 -07:00
if test -h $OMF_CONFIG/bundle
set bundle (readlink $OMF_CONFIG/bundle)
else
set bundle $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