-
-
Notifications
You must be signed in to change notification settings - Fork 19
Description
Version: v0.30.1
Linux (bash):
$ printf '1\n2\n3\n' > file
$ echo <(cat file)
/dev/fd/63
$ cat <(cat file)
1
2
3
$ ./hl -F <(cat file)
error: failed to resolve path for '/dev/fd/63': No such file or directory (os error 2)
Linux (zsh):
$ printf '1\n2\n3\n' > file
$ echo <(cat file)
/proc/self/fd/11
$ cat <(cat file)
1
2
3
$ ./hl -F <(cat file)
error: failed to resolve path for '/proc/self/fd/11': No such file or directory (os error 2)
macOS (zsh):
$ printf '1\n2\n3\n' > file
$ echo <(cat file)
/dev/fd/11
$ cat <(cat file)
1
2
3
$ ./Downloads/hl -F <(cat file) # (no output, which is possibly, expected)
Metadata
Metadata
Assignees
Labels
No labels