eolas/_scripts/random_revision_topic.sh
2022-12-14 19:00:05 +00:00

11 lines
296 B
Bash
Executable file

#!/bin/bash
DIRS_TO_PARSE="../Algorithms ../Computer_Architecture ../Databases"
for ele in $DIRS_TO_PARSE; do
FILE_MATCHES+=( $(find $ele -name "*.md" -type f) )
done
RANDOM_FILE_INDEX=$(( $RANDOM % ${#FILE_MATCHES[@]} + 0 ))
echo "Revise this topic: ${FILE_MATCHES[$RANDOM_FILE_INDEX]}"