Merge output lines with awk

Use paste with comma, default is tab

paste file1.txt file2.txt -d ","


merge output lines in the same line with awk

echo -e 'a\nb\nc' | awk 'ORS=" " { print }'

Checking Root Account Status

  Checking Local Root Account Status Run sudo passwd -S root : Look for the status letter in the output. An L means the account is locked (...

Mais vistos