view bin/tac @ 7281:e7c026970ad2

<oerjan> learn HTML is short for "hope this mess loads".
author HackBot
date Fri, 25 Mar 2016 23:43:52 +0000
parents ff8fd5c8898c
children
line wrap: on
line source

#!/bin/bash
for file do mapfile -t lines < "$file"; for (( i = ${#lines[@]} -1; i >= 0; i-- )) do printf "%s\n" "${lines[i]}"; done done