Plan 9 from Bell Labs’s /usr/web/sources/contrib/maht/rc/bindfonts

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


#!/bin/rc

fn font_files {	
	for (d in /lib/font/bit /usr/matt/lib/font/ttf /usr/matt/ink)
	du -a $d | grep '\.font$'
}

fn font_folders {
	for (f in `{font_files})
		basename -d $f
}

fn uniq_font_folders {
	font_folders | sort | uniq | grep '/'
}

fn bind_uniq_folders {
	for (u in `{uniq_font_folders})
		bind -a $u /lib/font
}

bind_uniq_folders



Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.