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
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
Copyright © 2021 Jogjafile Inc.