How to use a bash variable in this awk script

52 Views Asked by At

I want to insert a different random number at the beginning of every line in a file.

My last attempt looks like:

#!/bin/bash
n=$RANDOM
awk '{sub(/^/, "$n,");print}' file

Also, how do I just change the file, not print to stdout? tnx

0

There are 0 best solutions below