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

20 lines
383 B
Fish
Raw Normal View History

function omf.bundle.add -a type name_or_url
2016-04-19 16:16:58 +08:00
set -l bundle $OMF_CONFIG/bundle
2016-04-19 15:34:33 +08:00
if test -L $OMF_CONFIG/bundle
2016-04-19 15:14:10 +08:00
set bundle (readlink $OMF_CONFIG/bundle)
end
set -l record "$type $name_or_url"
if test -f $bundle
2016-12-18 10:26:46 +08:00
if not grep $record $bundle > /dev/null ^&1
echo $record >> $bundle
end
else
echo $record > $bundle
end
sort -u $bundle -o $bundle
end