Function output cannot be redirected
Open
- Dominant language
- C
- Stars
- 531
- Forks
- 40
- PR merge metrics
- No merged PRs in 30d
Description
```
$ hello() { HI=0xDEADBEEF; echo $HI; }
$ hello > /dev/null
0xDEADBEEF
$ exit
```
---
Expected output -
```
$ hello() { HI=0xDEADBEEF; echo $HI; }
$ hello > /dev/null
$ exit
```
Contributor guide
Assessment
This issue has not been assessed yet.