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