view bin/tac @ 8032:685de179831f

<shachaf> ` mv wisdom/semmelwei{,s}
author HackBot
date Fri, 13 May 2016 06:49:55 +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