2022-12-11 19:00:05 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-12-14 19:30:05 +00:00
|
|
|
# This script returns a random topic for me to revise
|
|
|
|
|
2023-01-21 12:18:17 +00:00
|
|
|
# It is aliased to cs-revise in .zshrc
|
|
|
|
|
2022-12-14 19:30:05 +00:00
|
|
|
# Choose source directories...
|
2023-04-17 07:35:23 +01:00
|
|
|
directories_to_parse="../Computer_Architecture ../Databases ../Electronics_and_Hardware ../Operating_Systems ../Programming_Languages ../DevOps"
|
2022-12-12 19:00:06 +00:00
|
|
|
|
2022-12-14 19:30:05 +00:00
|
|
|
# Return array of all files belonging to source dirs...
|
2023-02-21 07:39:26 +00:00
|
|
|
for ele in $directories_to_parse; do
|
|
|
|
file_matches+=( $(find $ele -name "*.md" -type f) )
|
2022-12-12 19:00:06 +00:00
|
|
|
done
|
|
|
|
|
2022-12-14 19:30:05 +00:00
|
|
|
# Generate a random integer between 0 and the match array length...
|
2023-02-21 07:39:26 +00:00
|
|
|
random_file_index=$(( $RANDOM % ${#file_matches[@]} + 0 ))
|
2022-12-12 19:00:06 +00:00
|
|
|
|
2022-12-14 19:30:05 +00:00
|
|
|
# Return file matching that index...
|
2023-02-21 07:39:26 +00:00
|
|
|
echo "Revise this topic: ${file_matches[$random_file_index]}"
|