How to See The Full Command Line Of A Running Process

There seems to be just the one-true-way of viewing the full command of a running process in Alpine Linux:

xargs -0 printf '%s\n' < /proc/1/cmdline

In this case, for pid 1.

Thanks to Tim Lewis’s answer on StackExchange.

comments powered by Disqus