mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
6b17c8f11b
i bet mk can't read the mac os or sun os archives.
7 lines
130 B
Bash
Executable file
7 lines
130 B
Bash
Executable file
#!/bin/sh
|
|
|
|
for i
|
|
do
|
|
# This works whether sed uses \(\) or () for grouping.
|
|
echo $i | sed 's/.*\((.*)\).*/\1/' | tr -d '()'
|
|
done
|