mirror of
https://github.com/onceupon/Bash-Oneliner
synced 2025-02-18 05:58:23 +00:00
Others
- List one file per line.
This commit is contained in:
parent
f6be60886d
commit
ddd2d3aa1f
1 changed files with 7 additions and 0 deletions
|
@ -3255,6 +3255,13 @@ pdftotext example.pdf example.txt
|
|||
ls -d */
|
||||
```
|
||||
|
||||
##### List one file per line.
|
||||
```bash
|
||||
ls -1
|
||||
# or list all, do not ignore entries starting with .
|
||||
ls -1a
|
||||
```
|
||||
|
||||
##### Capture/record/save terminal output (capture everything you type and output)
|
||||
```bash
|
||||
script output.txt
|
||||
|
|
Loading…
Add table
Reference in a new issue