here is the data.txt:
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 2280 728 ? Ss 20:44 0:00 init [2]
root 2 0.0 0.0 0 0 ? S 20:44 0:00 [kthreadd]
root 202 0.0 0.0 0 0 ? S< 20:44 0:00 [ext4-dio-unwri
root 334 0.0 0.1 2916 1452 ? Ss 20:44 0:00 udevd --daemon
how to read the data into a data.frame?
1.can not to decide separator
the last field is a problem,space can not be the separator,
init [2] ,udevd --daemon are the one field,can not be separated by space.
2.no fixed width
every line has different width.
so ,how can i read the data.txt into a data.frame?

read.fwf("data.txt", widths = c(4, 10, 5, 5, 7, 6, 4, 10, 6, 7, 20), skip = 1). Can't get the headers to work, that's why I haveskip = 1, but those are easy to add in. The last width can be just set much larger than you expect and you should be fine... I think.... – Ananda Mahto Jan 21 at 4:06read.fwfwill be problematic as thepslinux command which is used to generate this text will use different sized columns each time it is run dependent on the values needed to be printed. I have commented below that the output format can however be manually specified when using the program. – thelatemail Jan 21 at 4:16