Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I found this script online and tried to use it:

#!/bin/sh
# Target directory
TARGET=$3
echo "Copying to $TARGET"
for i in $(git diff --name-only $1 $2)
    do
        # First create the target directory, if it doesn't exist.
        mkdir -p "$TARGET/$(dirname $i)"
        # Then copy over the file.
        cp "$i" "$TARGET/$i"
    done
echo "Done";

I've validated the script online, and the script is okay. I've also tried to change it in various ways, but it doesn't work for me.

I've also tried running something like:

#!/bin/sh
# Target directory
TARGET=$3
echo "Copying to $TARGET"
for i in $(ls)
do
    echo "text"
done

And I still get the same error:

./git-copy.sh: line 6: syntax error near unexpected token `$'do
''
'/git-copy.sh: line 6: `do

Why is that?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
815 views
Welcome To Ask or Share your Answers For Others

1 Answer

Your script has been edited on a DOS or Windows based system and contains carriage-return characters that Linux/Unix does not like (that what is). You could use dos2unix to convert the carriage return line endings to the correct format; if you don't have dos2unix you might use awk like

awk '{ sub("
$", ""); print }' git-copy.sh > git-copy2.sh
mv git-copy2.sh git-copy.sh

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...