/
vasya2
/
var2
Обзор
Документация
Войти
/
vasya2
/
var2
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tools/scripts/move-bf.sh
13 строк
497 B
Naomi
fix: when in doubt, sudo? (#54266)
01 апр 2024, 19:00
Не верифицирован
01 апр 2024, 19:00
522977e
Код
Авторство
О чём код?
#!/bin/bash # Define the source file source_file="curriculum/challenges/english/22-rosetta-code/rosetta-code-challenges/execute-brain.md" # Define the destination directory destination_dir="curriculum/challenges" # Loop through all directories except _meta and english for dir in $(find "$destination_dir" -mindepth 1 -maxdepth 1 -type d ! -name '_meta' ! -name 'english'); do # Copy the file to each directory cp "./$source_file" "./$dir/22-rosetta-code/rosetta-code-challenges/" done