mirror of
https://github.com/xmengnet/the-art-of-command-line.git
synced 2024-12-26 21:16:28 +08:00
Merge pull request #331 from lukeyeager/patch-1
Typo in One Liners - "If want to"
This commit is contained in:
commit
eeddf30949
1 changed files with 1 additions and 1 deletions
|
@ -310,7 +310,7 @@ A few examples of piecing together commands:
|
||||||
awk '{ x += $3 } END { print x }' myfile
|
awk '{ x += $3 } END { print x }' myfile
|
||||||
```
|
```
|
||||||
|
|
||||||
- If want to see sizes/dates on a tree of files, this is like a recursive `ls -l` but is easier to read than `ls -lR`:
|
- To see sizes/dates on a tree of files, this is like a recursive `ls -l` but is easier to read than `ls -lR`:
|
||||||
```sh
|
```sh
|
||||||
find . -type f -ls
|
find . -type f -ls
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue