diff options
-rwxr-xr-x | gist | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -93,9 +93,9 @@ tmp_file() { | |||
93 | } | 93 | } |
94 | tac() { | 94 | tac() { |
95 | if [[ $(uname) == Darwin ]]; then | 95 | if [[ $(uname) == Darwin ]]; then |
96 | tail -r | 96 | tail -r $1 |
97 | else | 97 | else |
98 | $(which tac) | 98 | $(which tac) $1 |
99 | fi | 99 | fi |
100 | } | 100 | } |
101 | mtime() { | 101 | mtime() { |