5 lines
95 B
Bash
5 lines
95 B
Bash
|
#!/bin/sh
|
||
|
sed -n '/^#define/{s/.*BB_//; s/$/.o/p; }' busybox.def.h | \
|
||
|
tr [:upper:] [:lower:]
|
||
|
|