customfetch = !git fetch -r `wget -qO - http://hudson/url_to_project/lastStableBuild/ | gawk 'c&&!--c;/Revision:/{c=1}' | sed -ne 's/<.*//p' | sed -ne 's/\s//p'`
git svn fetch -r
hudsen で報告された最後の安定版ビルドの svn リビジョン番号に対応する git のエイリアスを作成したいと考えています。ページをダウンロードし、リビジョン番号を解析して、そのリビジョン番号を取得しようとします。リビジョン番号を取得するコマンドは正常に機能しますが、エイリアスを作成しようとすると失敗します。
git svn fetch -r `wget -qO - http://hudson/url_to_project/lastStableBuild/ | gawk 'c&&!--c: -c: line 0: unexpected EOF while looking for matching `''
git svn fetch -r `wget -qO - http://hudson/url_to_project/lastStableBuild/ | gawk 'c&&!--c: -c: line 1: syntax error: unexpected end of file
開いているバックティックを閉じて、開いているものをすべて閉じているため、コマンドの何が問題なのかわかりません'
。
どうすればそれを機能させることができますか?