質問

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