[LNT] r318200 - Apparently not all base64 tools support the -o switch

Matthias Braun via llvm-commits llvm-commits at lists.llvm.org
Tue Nov 14 13:20:20 PST 2017


Author: matze
Date: Tue Nov 14 13:20:20 2017
New Revision: 318200

URL: http://llvm.org/viewvc/llvm-project?rev=318200&view=rev
Log:
Apparently not all base64 tools support the -o switch

Modified:
    lnt/trunk/docs/profiles.rst

Modified: lnt/trunk/docs/profiles.rst
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/docs/profiles.rst?rev=318200&r1=318199&r2=318200&view=diff
==============================================================================
--- lnt/trunk/docs/profiles.rst (original)
+++ lnt/trunk/docs/profiles.rst Tue Nov 14 13:20:20 2017
@@ -48,7 +48,7 @@ The first step is to produce the profile
 
 ``/tmp/my_profile.lntprof`` is now an LNT profile in a space-efficient binary form. To prepare it to be sent via JSON, we must base-64 encode it::
 
-  base64 -i /tmp/my_profile.lntprof -o /tmp/my_profile.txt
+  base64 -i /tmp/my_profile.lntprof > /tmp/my_profile.txt
 
 Now we just need to add it to the report. Profiles look similar to hashes in that they are samples with string data::
 




More information about the llvm-commits mailing list