I have a file that looks like this:

...
%ldirs
(list of line-separated directories)
...

With a shell script, I need to add a directory to the list in that file, but only if that directory is not already in the list. Here's the catch: The directory in question must come from a variable $SOME_PATH.

I thought about using the patch utility, but to do that I would have to generate the patch file dynamically to add "+$SOME_PATH". The other problem is that I do not know the "after context" or the line number of "%ldirs", so generating the patch file is problematic.

Is there another option?

Tweaked answer - Thanks to Rob:

line=$(grep "$SOME_PATH" /path/to/file)
if [ $? -eq 1 ]
    then
    sed -i "/%ldirs/ a\\$SOME_PATH" /path/to/file
fi

Final answer - Thanks to tripleee:

fgrep -xq "$SOME_PATH" /path/to/file || sed -i "/%ldirs/ a\\$SOME_PATH" /path/to/file
link|improve this question

I hotly debated with myself: stackoverflow, superuser, stackoverflow, superuser. Apparently I got it wrong. – Tergiver Feb 2 at 21:58
feedback

migrated from superuser.com Feb 2 at 19:21

This question came from our site for computer enthusiasts and power users.

1 Answer

up vote 2 down vote accepted

line=$(grep "$SOME_PATH" %ldirs)
if [ $? -eq 1 ]
    then
    echo "$SOME_PATH" >> %ldirs
fi

something like this should work, it worked fine for me. I'm sure there are other ways to write it, too.

line=$(grep "$SOME_PATH" /path/to/file)
if [ $? -eq 1 ]
    then
    sed -i 's/%lsdir/%lsdir\n"$SOME_PATH"/' /path/to/file
fi

should work. It'll find %lsdir and replace it with %lsdir(newline)$SOME_PATH (not sure if quotes are needed on $SOME_PATH here, pretty sure they aren't)

link|improve this answer
%ldirs is part of the file contents, not the file name. I think it's like [section] in INI files. – Daniel Beck Feb 2 at 16:53
Oh, that makes sense. :/ that makes things a bit more difficult then, doesn't it. – Rob Feb 2 at 16:54
or not. testing something else really quickly. – Rob Feb 2 at 16:55
Yes, it's just like [section] in INI files. Just a wee bit more difficult ;) – Tergiver Feb 2 at 17:05
2  
fgrep -xq "$SOME_PATH" /path/to/file || sed -i 's!%ldirs%&\n'"$SOME_PATH"'!' /path/to/file ... note the fixed quoting in the sed script, and the use of fgrep -x to look for the whole line, not a partial match. – tripleee Feb 2 at 20:18
show 8 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.