commit 3d453529158bb97f60b453a75b1a7c5ace0fb3d9
parent b92675ed490396984908cb66d34a67dfbfdc5510
Author: pyratebeard <root@pyratebeard.net>
Date: Fri, 12 May 2023 16:26:52 +0100
updates
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/programming/nubbins.md b/programming/nubbins.md
@@ -1,6 +1,6 @@
# nubbins
-* compare contents of two directories
+### compare contents of two directories
```
for f in $(find dir1/ -type f | awk -F/ '{print $NF}') ; do
find dir2/ -type f -name "$f" -exec echo {} is in both \;