diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-22 18:34:49 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-22 18:34:49 +0000 |
commit | 5fa8a7078cfd464446c0b347ee6617b6e3c98a11 (patch) | |
tree | 15a95b47b17881324868e47e61193df559c31db0 /chrome/tools | |
parent | 2f89e6a204ace2e53d2ddae7d6bd940e749c3b42 (diff) | |
download | chromium_src-5fa8a7078cfd464446c0b347ee6617b6e3c98a11.zip chromium_src-5fa8a7078cfd464446c0b347ee6617b6e3c98a11.tar.gz chromium_src-5fa8a7078cfd464446c0b347ee6617b6e3c98a11.tar.bz2 |
linux: generate a manpage
This is not intended to be complete; hopefully we can iterate from here.
Review URL: http://codereview.chromium.org/159198
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@21298 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/tools')
-rwxr-xr-x | chrome/tools/build/linux/sed.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/chrome/tools/build/linux/sed.sh b/chrome/tools/build/linux/sed.sh new file mode 100755 index 0000000..9284a28 --- /dev/null +++ b/chrome/tools/build/linux/sed.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +# Does the equivalent of +# sed -e A -e B infile > outfile +# in a world where doing it from gyp eats the redirection. + +infile="$1" +outfile="$2" +shift 2 + +sed "$@" "$infile" > "$outfile" |