You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# 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
|
|
}
|