dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles # fast
git clone https://src.adamsgaard.dk/dotfiles.git # slow
Log | Files | Refs | README | LICENSE Back to index

reverse (80B)


      1 #!/usr/bin/awk -f
      2 {
      3 	line[i++] = $0
      4 }
      5 
      6 END {
      7 	while (i > 0)
      8 		print line[--i]
      9 }