I have a text file which contains a list of values:
ASDSAV
ASDSAD
ASDFSA
and need to get
ASDSAV 7
ASDSAD 7
ASDFSA 7
i.e. join it with a file that is just one column of 7s (which can be easily achieved with paste)
7
7
7
Is there easy command to create this file of 7s?