Created
July 7, 2019 22:39
-
-
Save apoorvalal/2fdc56021aac332bc5b660779d2ebbd6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for dir in `ls -d */`; | |
do echo $dir; | |
echo ""; | |
grep -E '^library|^require' -h $dir/*.Rmd $dir/*.R | sort | uniq; | |
echo ""; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment