|
|
|
|
|
by kazinator
1327 days ago
|
|
Your awk has to put out file="..." notation, and if double quotes occur, they have to be escaped. So you're looking at substantially longer command. | awk 'function esc(str) {
...
}
{ print "file=\"" esc($9) " user=\"" ... }'
|
|