5 lines
128 B
Bash
Executable file
5 lines
128 B
Bash
Executable file
#!/bin/bash
|
|
|
|
for f in `find "./portdir/" -mindepth 2 -maxdepth 2 -type d`; do
|
|
echo ${f#./portdir/}
|
|
done > gen_source_pkgs.list
|