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