• File: readfile.awk
  • Full Path: /home/masbinta/public_html/admin/installer/css/sass/sym404/root/usr/share/awk/readfile.awk
  • File size: 267 bytes
  • MIME-type: text/plain
  • Charset: utf-8
# readfile.awk --- read an entire file at once
#
# Original idea by Denis Shirokov, cosmogen@gmail.com, April 2013
#

function readfile(file,     tmp, save_rs)
{
    save_rs = RS
    RS = "^$"
    getline tmp < file
    close(file)
    RS = save_rs

    return tmp
}