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