uweb/bc/index.html

51 lines
1.8 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="/uwebzh/style.css" type="text/css" />
<title>配置浏览器地址栏作为超级计算器(bc)</title>
</head>
<body>
<header class='header'>
<a class="logo" href="/uwebzh">Home</a> <a class="logo" href="/uwebzh/tags/">Tags</a>
<nav>
</nav>
</header>
<br />
<div class="container">
<h1 class="title">配置浏览器地址栏作为超级计算器(bc)
<br>
<span class="subtitle"></span>
</h1>
<ul class="tags">
</ul>
<p>使用Android端<a href="https://www.coolapk.com/apk/info.torapp.uweb">uweb浏览器</a><br>
Gnu bc计算器支持无限精度可轻易扩展函数库、常数库。</p>
<h3 id="安装bc">安装bc</h3>
<ul>
<li>安装<a href="../searchurl/plugins.html">uweb定制Termux应用</a></li>
<li>Termux下运行以下命令<br>
apt update<br>
apt upgrade<br>
apt install bc</li>
</ul>
<h3 id="配置文件sdcarduwebdefaultacmd如下">配置文件/sdcard/uweb/default.acmd如下</h3>
<p>计算器:text/html:echo &quot;%s&quot;|bc -l -q</p>
<h3 id="更多bc扩展库">更多bc扩展库</h3>
<p>扩展库可下载至/sdcard/uweb目录<br>
<a href="https://github.com/susca/bc-extensions">https://github.com/susca/bc-extensions</a><br>
<a href="http://phodd.net/gnu-bc">http://phodd.net/gnu-bc</a><br>
<a href="http://www.numbertheory.org/gnubc/gnubc.html">http://www.numbertheory.org/gnubc/gnubc.html</a></p>
<h3 id="使用扩展库以后defaultacmd配置如下">使用扩展库以后default.acmd配置如下</h3>
<p>计算器:text/html:echo &quot;%s&quot;|bc -l q extensions.bc scientific_constants.bc<br>
全能计算器:text/html:echo &quot;%s&quot;|bc -l q *.bc</p>
</div>
</body>
</html>