mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
14 lines
197 B
Bash
Executable File
14 lines
197 B
Bash
Executable File
for dir in */
|
|
do
|
|
dir=${dir%*/}
|
|
echo ${dir##*/}
|
|
if [[ $dir == _* ]];
|
|
then
|
|
echo "Ignoring ${dir}"
|
|
continue;
|
|
fi
|
|
cd $dir
|
|
ln -s ../modules modules
|
|
cd ..
|
|
done
|