annotate bin/ctof @ 5194:c71fb3c4f41a

<b_jonas> >bin/ctof echo $\'#!/usr/bin/perl\\n$c=0+$ARGV[0]; printf"%.2f\xc2\xb0C = %.2f\xc2\xb0F",$c,$c*9/5+32;\' && chmod a+x bin/ctof
author HackBot
date Fri, 12 Dec 2014 06:50:33 +0000
parents
children df16e74fa057
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5194
c71fb3c4f41a <b_jonas> >bin/ctof echo $\'#!/usr/bin/perl\\n$c=0+$ARGV[0]; printf"%.2f\xc2\xb0C = %.2f\xc2\xb0F",$c,$c*9/5+32;\' && chmod a+x bin/ctof
HackBot
parents:
diff changeset
1 #!/usr/bin/perl
c71fb3c4f41a <b_jonas> >bin/ctof echo $\'#!/usr/bin/perl\\n$c=0+$ARGV[0]; printf"%.2f\xc2\xb0C = %.2f\xc2\xb0F",$c,$c*9/5+32;\' && chmod a+x bin/ctof
HackBot
parents:
diff changeset
2 $c=0+$ARGV[0]; printf"%.2f°C = %.2f°F",$c,$c*9/5+32;