log
graph
tags
bookmarks
branches
changeset
browse
file
latest
diff
comparison
annotate
file log
raw
help
Mercurial
>
repos
>
rico
>
test_repository
comparison echo.bash @ 0:
99a67ac88802
default
tip
Find changesets by keywords (author, files, the commit message), revision number or hash, or
revset expression
.
Uploaded
author
rico
date
Thu, 05 Apr 2012 14:22:50 -0400
parents
children
comparison
equal
deleted
inserted
replaced
-1:000000000000
0:99a67ac88802
1
#!/usr/bin/env bash
2
3
if [ $# -lt 3 ]; then
4
echo "usage"
5
exit 1
6
fi
7
8
input="$1"
9
output="$2"
10
shift 2
11
12
for individual in "$@"; do
13
echo "$individual" >> "$output"
14
done
15
16
exit 0
17