mirror of
https://github.com/ellysh/bash-programming-from-scratch.git
synced 2026-01-26 07:43:42 +00:00
8 lines
163 B
Bash
8 lines
163 B
Bash
#!/bin/bash
|
|
|
|
cd dir1
|
|
find . -type f -exec test ! -e ../dir2/{} \; -a -exec echo {} \;
|
|
|
|
cd ../dir2
|
|
find . -type f -exec test ! -e ../dir1/{} \; -a -exec echo {} \;
|