meta data for this page

Search

You can find the results of your search below.

Fulltext results:

unixtools @software #ImageMagick #TipsAndTricks #WSL #awk #bash #git #magick #unison
6 Hits, Last modified:
%.0f\n", $1, $2}} INFILE > OUTFILE </code> Pass variable from bash into ''awk'' ([[https://stackoverflow.c... ble. E.g., awk -v var= not awk -vvar) <code awk> variable="line one\nline two" awk -v var="$variable" 'BEGIN {print var}' line one line two # --- Multiple vars # This should be compatible with most awk and variable is # available in the BEGIN block as well: awk