mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
8 lines
130 B
Text
8 lines
130 B
Text
|
#!/bin/sh
|
||
|
|
||
|
for i
|
||
|
do
|
||
|
# This works whether sed uses \(\) or () for grouping.
|
||
|
echo $i | sed 's/.*\((.*)\).*/\1/' | tr -d '()'
|
||
|
done
|