diff options
author | pluknet <pluknet@FreeBSD.org> | 2013-12-25 15:23:01 +0000 |
---|---|---|
committer | pluknet <pluknet@FreeBSD.org> | 2013-12-25 15:23:01 +0000 |
commit | f72cf8d1f8630f00b8933f3d34daf93f36149e39 (patch) | |
tree | 1324de26b641e24eab88fd0ff0b0a5df290cd6e2 | |
parent | eaabb56fb3ab768c90132ce4941c5ec324d2498c (diff) | |
download | FreeBSD-src-f72cf8d1f8630f00b8933f3d34daf93f36149e39.zip FreeBSD-src-f72cf8d1f8630f00b8933f3d34daf93f36149e39.tar.gz |
Do not truncate the ``command'' column in ``ps'' output.
Reviewed by: jhb
MFC after: 1 week
-rwxr-xr-x | usr.sbin/crashinfo/crashinfo.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/crashinfo/crashinfo.sh b/usr.sbin/crashinfo/crashinfo.sh index 06108d5..557d810 100755 --- a/usr.sbin/crashinfo/crashinfo.sh +++ b/usr.sbin/crashinfo/crashinfo.sh @@ -181,9 +181,9 @@ fi echo echo "------------------------------------------------------------------------" -echo "ps -axl" +echo "ps -axlww" echo -ps -M $VMCORE -N $KERNEL -axl +ps -M $VMCORE -N $KERNEL -axlww echo echo "------------------------------------------------------------------------" |