6 lines
47 B
Bash
6 lines
47 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
for i in man/*.2; do
|
||
|
echo $i
|
||
|
done
|