Removed Unnecessary Usage of Cat

This commit is contained in:
Nathan Broadbent
2012-01-25 23:22:52 +08:00
parent 22086627d0
commit 505f52a8ff
2 changed files with 2 additions and 2 deletions

View File

@@ -82,7 +82,7 @@ ensureIndex() {
}
index_no_newlines() {
cat $git_index_file | tr "\\n" " "
tr "\\n" " " < $git_index_file
}