paste <(cut -d ' ' -f1 file1) <(cut -f2-5 -d ' 'file2) -d ' '> file3
the command above merges the first column of file1 with columns 2,3, and 4 of file2 and dumps it to file3 with a white-space delimiter. columns are separated with white-spaces for file1 and file2.