mirror of
https://github.com/nushell/nushell.git
synced 2025-08-16 20:21:40 +02:00
Change f
/full
flag to l
/long
for ls
and ps
commands (#2283)
* Change `f`/`full` flag to `l`/`long` for `ls` and `ps` commands * Fix a few more `--full` instances
This commit is contained in:
@ -35,7 +35,7 @@ Dates can also be compared using the duration types. For example, `where accesse
|
||||
|
||||
## Boolean check
|
||||
|
||||
Where with the form `| where readonly` is used to check boolean values. For example, the command `ls --full | where readonly` will list only those files that are readonly.
|
||||
Where with the form `| where readonly` is used to check boolean values. For example, the command `ls --long | where readonly` will list only those files that are readonly.
|
||||
|
||||
## Usage
|
||||
|
||||
@ -76,7 +76,7 @@ Where with the form `| where readonly` is used to check boolean values. For exam
|
||||
```
|
||||
|
||||
```shell
|
||||
> ls -f | where accessed <= 1w
|
||||
> ls -l | where accessed <= 1w
|
||||
───┬────────────────────┬──────┬────────┬──────────┬───────────┬─────────────┬───────┬──────────┬──────────────┬─────────────┬─────────────
|
||||
# │ name │ type │ target │ readonly │ mode │ uid │ group │ size │ created │ accessed │ modified
|
||||
───┼────────────────────┼──────┼────────┼──────────┼───────────┼─────────────┼───────┼──────────┼──────────────┼─────────────┼─────────────
|
||||
|
Reference in New Issue
Block a user