now before you think, "this has been done before" please read on.
Like most of the people trying to do a find bash script you end up hard-coding the script to a single line command, but end up editing the thing over the following months/years so often that you wish in the end you did it right the first time.
I am writing a little backup program right now to do backups of directories and need to find them, against a list of directorie4s that needs to be excluded. Easier said than done. Let me set the stage:
#!/bin/bash
BasePath="/home/adesso/baldar"
declare -a Iggy
Iggy=( "/cgi-bin"
"/tmp"
"/test"
"/html"
"/icons" )
IggySubdomains=$(printf ",%s" "${Iggy[@]}")
IggySubdomains=${IggySubdomains:1}
echo $IggySubdomains
exit 0
Now at the end of this you get /cgi-bin,/tmp,/test,/html,/icons This proves that the concept works, but now to take it a bit further I need to use find to search the BasePath and search only one level deep for all subdirectories and exclude the list of subdirectories in the array...
If I type this by hand it would be:
find /var/www/* \( -path '*/cgi-bin' -o -path '*/tmp' -o -path '*/test' -o -path '*/html' -o -path '*/icons' \) -prune -type d
And should I maybe want to loop into each subdirectory and do the same... I hope you get my point.
So What I am trying to do seem possible, but I have a bit of a problem, printf ",%s" doesn't like me using all those find -path or -o options. Does this mean I have to use eval again?
I am trying to use the power of bash here, and not some for loop. Any constructive input would be appreciated.
declare -a, the assignment is enough. Variable names in bash are generally lower case (or all caps for environment variables) and not camel case. There's no need toexit 0at the end (echowill have returned 0 anayway). – Sorpigal Nov 15 '11 at 17:08