2022-12-11 19:00:05 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-12-12 19:00:06 +00:00
|
|
|
DIRS_TO_PARSE="../Algorithms ../Computer_Architecture ../Databases"
|
|
|
|
|
|
|
|
for ele in $DIRS_TO_PARSE; do
|
|
|
|
find $ele -name "*.md" -type f >> list_of_files.list
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
#find ../ -name "*.md" -type f > list_of_files.list
|