I am trying to understand what this command does.

who | cut –c1-8

Is it displaying the first 8 characters of details of users logged in?

Or is it displaying the first 8 people who are logged in?

Thanks.

有帮助吗?

解决方案

cut -c1-8 will display the first 8 characters of each line of its standard input. The full pipeline will thus display the first 8 characters of details of all users logged in.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top