Skip to main content
The 2024 Developer Survey results are live! See the results
JoL's user avatar
JoL's user avatar
JoL's user avatar
JoL
  • Member for 7 years, 10 months
  • Last seen this week
14 votes
5 answers
12k views

How to poweroff when there's no systemd/init (e.g. using init=/bin/bash)?

10 votes
2 answers
1k views

Do typical system call interfaces allow reducing the size of a file (without replacing it with a different inode)?

7 votes
3 answers
391 views

Is parsing scripts at script-runtime ubiquitous to shells or present in other interpreters and how does that work?

7 votes
1 answer
2k views

How are time namespaces supposed to be used?

6 votes
1 answer
2k views

Why is the stdout of a `>()` subshell different if it's part of a redirection (e.g. `> >()`)?

4 votes
1 answer
2k views

Is it normal for tune2fs default mount options to not appear in mount output?

4 votes
4 answers
2k views

Why does `... | sed 's/^/stdout: /'` print on empty stdin when `... > >(sed 's/^/stdout: /')` doesn't?

3 votes
2 answers
143 views

Is there a shorter equivalent to long/path/**/^*.(complex|pattern)~long/path/(bad-1|bad-2)/*(.) that doesn't require repeating long/path/?

2 votes
1 answer
882 views

How to inspect decrypted TLS/SSL traffic in Wireshark from program not supporting SSLKEYLOGFILE?

2 votes
1 answer
678 views

"Inheritance" in bash; Is there a way to call super in overriding function (without eval)?

2 votes
1 answer
1k views

How come `while true; do echo y; done | true` dies on its own, but `while true; do echo y | cat; done | true` doesn't?

1 vote
1 answer
2k views

`find -type l` matches file while `-type l -o -type f` does not, but only with explicit `-print` [duplicate]

1 vote
2 answers
3k views

Is there a command to get model/driver/ppd of existing printers for use with `lpadmin -m`?

1 vote
0 answers
770 views

How to programmatically determine if a USB device (by bus id) is a keyboard?

0 votes
2 answers
864 views

How to write to terminal device stdin of running process from a different terminal without any prior preparation? [duplicate]