Replace the only instance of sed(1) in bsdconfig(8) with awk(1).

MFC after:	3 days
This commit is contained in:
Devin Teske 2015-02-09 19:16:19 +00:00
parent 66ea550a77
commit 94f2a70e88
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=278467

View File

@ -219,7 +219,7 @@ f_keymap_get_all()
echo -n "$k "
# NOTE: Translate '8x8' to '8x08' before sending to
# sort(1) so that things work out as we might expect.
debug= keymap_$k get desc | sed -e 's/8x8/8x08/g'
debug= keymap_$k get desc | awk 'gsub(/8x8/,"8x08")||1'
done | sort -k2 | awk '{
printf "%s%s", (started ? " " : ""), $1; started = 1
}'