9 lines
179 B
Plaintext
9 lines
179 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
cat | sed 's/^WANTLIB[[:blank:]+=]*//g' \
|
||
|
| tr ' ' '\n' \
|
||
|
| sort -u \
|
||
|
| fmt -w60 \
|
||
|
| sed 's/^/WANTLIB += /g'
|
||
|
# | sed '1s/^WANTLIB += /WANTLIB = /'
|