1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2025-06-15 14:47:53 +02:00

Update bash.md (#1757)

This commit is contained in:
Peter C. S. Scholtens 2021-12-14 23:36:19 +01:00 committed by GitHub
parent 3e380ef4a2
commit c1741f6923
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -649,6 +649,7 @@ python hello.py &>/dev/null # stdout and stderr to (null)
```bash
python hello.py < foo.txt # feed foo.txt to stdin for python
diff <(ls -r) <(ls) # Compare two stdout without files
```
### Inspecting commands