changeset 6090:ed1c9b7e5456

<fizzie> ` sed -i -e \'2s#$# | perl -pe \'\\\'\'if (/^\\\\s*(\\\\d+:)\\\\s*((?:\\\\w\\\\w )+)\\\\s*(\\\\S.*)$/) { ($a,$b,$c) = ($1,$2,$3); $_ = "$a $b ".($c =~ s/\\\\s+/ /rg); }\'\\\'\'#\' bin/asm
author HackBot
date Sat, 17 Oct 2015 10:38:49 +0000
parents 3c9e9ebec6ac
children e72ec4b21b8b
files bin/asm
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/bin/asm	Sat Oct 17 10:38:37 2015 +0000
+++ b/bin/asm	Sat Oct 17 10:38:49 2015 +0000
@@ -1,2 +1,2 @@
 #!/bin/sh
-echo "$1" | as -c /dev/stdin -o /tmp/asm.o; objdump -d --insn-width=20 /tmp/asm.o | sed -e "1,/0000000000000000/d"
+echo "$1" | as -c /dev/stdin -o /tmp/asm.o; objdump -d --insn-width=20 /tmp/asm.o | sed -e "1,/0000000000000000/d" | perl -pe 'if (/^\s*(\d+:)\s*((?:\w\w )+)\s*(\S.*)$/) { ($a,$b,$c) = ($1,$2,$3); $_ = "$a  $b  ".($c =~ s/\s+/ /rg); }'