Home > OS >  In Linux, how to make the ls -l total not to display or delete
In Linux, how to make the ls -l total not to display or delete

Time:10-09

College students learn Linux has encountered a problem

CodePudding user response:

 ls -l | grep -v total 

 ls -l | tail - n + 2 

  • Related