- https://github.com/Benjamin-Loison
- Joined on
2022-10-16
Block a user
File system pane is shown on webpage refresh
Track Improve websites thanks to open source: [docs.numerique.gouv.fr] Is it open-source?
voici les nouveautés :
- Équations en LaTeX
https://docs.numerique.gouv.fr/docs/d57359d2-5ff4-406c-9ac…
Leverage captured group regex replace
GNOME text editor (\d) (\d) and \1~\2 is a working workaround.
Leverage captured group regex replace
Can't horizontally scroll panes and *...* buttons on Fennec
Run a given command once another given command starts running
Could inotifywait the created file or print as Mistral propose and grep -m 1 on it maybe.
Run a given command once another given command starts running
cat -A /proc/$(pidof sleep)/cmdline
sleep␀7297␀
Run a given command once another given command starts running
ls -l /proc/$(pidof sleep)/task/$(pidof sleep)/cmdline
-r--r--r-- 1 ubuntu ubuntu 0 Sep 13 22:31 /proc/8111/task/8111/cmdline
Run a given command once another given command starts running
grep -rw 7297 /proc/$(pidof sleep)/
Output:
grep: /proc/8111/task/8111/net/rpc/auth.unix.ip/flush: Permission denied
grep: /proc/8111/task/8111…
Run a given command once another given command starts running
ls -l /proc/$(pidof sleep)/cmdline
-r--r--r-- 1 ubuntu ubuntu 0 Sep 13 22:30 /proc/8089/cmdline
Run a given command once another given command starts running
tree /proc/$(pidof sleep)/
Output:
/proc/8075/
├── attr
│ ├── apparmor
│ │ ├── current
│ │ ├── exec
│ │ …
Run a given command once another given command starts running
https://chat.mistral.ai/chat/a63abce1-2e77-4752-928a-698503c0875d
Bash script:
sudo bpftrace --unsafe -e '
tracepoint:syscalls:sys_enter_execve
/str(a…
Run a given command once another given command starts running
DuckDuckGo and Google search "is an unsafe function being used in safe mode".
Run a given command once another given command starts running
Bash script:
sudo bpftrace -e '
tracepoint:syscalls:sys_enter_execve
/str(args.filename) == "/usr/bin/sleep"/
{
system("/usr/bin/touch /home/ubuntu…
Run a given command once another given command starts running
Listening to given program invocations, then investigate command line arguments would be fine.