log
graph
tags
bookmarks
branches
changeset
browse
file
latest
diff
comparison
annotate
file log
raw
help
Mercurial
>
repos
>
rico
>
testing_again
comparison echo.bash @ 0:
4d28d3295ac3
default
tip
Find changesets by keywords (author, files, the commit message), revision number or hash, or
revset expression
.
Uploaded
author
rico
date
Fri, 06 Apr 2012 13:46:42 -0400
parents
children
comparison
equal
deleted
inserted
replaced
-1:000000000000
0:4d28d3295ac3
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