Skip to content

Commit

Permalink
add script for courses (print lessons names)
Browse files Browse the repository at this point in the history
  • Loading branch information
fey committed Jul 17, 2024
1 parent 851a916 commit 16a29b1
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
5 changes: 5 additions & 0 deletions course.mk
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
ROOT_DIR := $(dir $(abspath $(lastword $(MAKEFILE_LIST))))

ci-check:
docker compose -f docker-compose.yml build
docker compose -f docker-compose.yml up --abort-on-container-exit
Expand Down Expand Up @@ -98,3 +100,6 @@ markdown-lint-fix:

spellcheck:
npx languagetool-node ./**/*.md

print-course-lessons-names:
$(ROOT_DIR)/scripts/print-course-lessons-names
12 changes: 12 additions & 0 deletions scripts/print-course-lessons-names
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash

# Находим все файлы spec.yml в поддиректориях
files=$(find * -mindepth 1 -maxdepth 1 -type f -name 'spec.yml')

# Парсим значение ключа .lesson.name из каждого файла используя утилиту yq
for file in $files; do
lesson_name=$(yq '.lesson.name' $file)
directory=$(dirname $file)
# NOTE: выводим \t как есть, чтобы потом его заменить как есть. в 99% случаев вывод копируется в эксель, но bash выводит не таб-символ, а пробелы. Может это чисто моя проблема.
echo "$directory\t$lesson_name"
done | sort -t '/' -k 2

0 comments on commit 16a29b1

Please sign in to comment.