Asketic Aligator
Druhá iterace stránek ve vývoji
Cobra Class 2 Asketic Aligator
2023.04.21 10:10:21 giw2me Gilhad


time make -j24 clean_autogenerate
find input/ -name *.rst -exec echo -e "\n:authors: Gilhad\n:title: Jak jsem pčeváděl Cobra Class do Asketic Aligator\n" >> {} \; # a to pochopitelně udělalo něco jiného ( {} ), takže oprava:

find input/ -name *.rst | ( while read line; do echo -e "\n:authors: Gilhad\n:title: Jak jsem pčeváděl Cobra Class do Asketic Aligator\n" >> ${line} ; done )
time make -j24

        real    0m0.959s
        user    0m16.041s
        sys     0m0.926s

time make -j24


        <string>:4: (WARNING/2) Duplicate explicit target name: "howto".
        ValueError: time data '2023-03-19 19:13:15' does not match format '%Y.%m.%d %H:%M:%S'

        real    0m1.223s
        user    0m23.025s
        sys     0m1.378s

        <string>:4: (WARNING/2) Duplicate explicit target name: "howto".
        ValueError: time data '2023-03-19 19:13:15' does not match format '%Y.%m.%d %H:%M:%S'
        real    0m1.204s
        user    0m23.144s
        sys     0m1.275s
find input/ -name "*.rst" -exec sed -i "s@\(\.\..* image:: *\){static.*logos@\1 ../logos@" {} \;
find input/ -name "*.rst" -exec sed -i "s@\(\.\..* image::\).*images@\1 images@" {} \;
real    63m22.021s
user    5m44.673s
sys     0m21.966s

End of index