2022-07-31 08:18:31 +00:00
<!doctype html>
< html >
< head >
< meta charset = "utf-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1" / >
2023-12-11 07:23:07 +00:00
2022-10-31 07:44:05 +00:00
< link rel = "stylesheet" href = "../style.css" type = "text/css" / >
2023-01-09 00:03:02 +00:00
< title > Address bar command line< / title >
2022-07-31 08:18:31 +00:00
< script type = "text/javascript" >
function findLang(){
let href = location.href;
for(let i=href.length-1;i>0;i--){
if('/'==href.charAt(i) & & '/'==href.charAt(i-3))
return i;
}
return 0;
}
function nav2(page){
let i = findLang();
location.href = location.href.substring(0,i+1)+page;
}
function nav2Lang(lang){
let i = findLang();
let href = location.href;
location.href = location.href.substring(0,i-2)+lang+location.href.substring(i);
}
< / script >
< / head >
< body >
< header class = 'header' >
< a class = "logo" href = "javascript:void(0)" onclick = "return nav2('index.html')" > Home< / a > < a class = "logo" href = "javascript:void(0)" onclick = "return nav2('tags/index.html')" > Tags< / a >
< nav >
< / nav >
< / header >
< br / >
< div class = "container" >
2023-01-09 00:03:02 +00:00
< h1 class = "title" > Address bar command line
2022-07-31 08:18:31 +00:00
< br >
< span class = "subtitle" > < / span >
< / h1 >
< ul class = "tags" >
< / ul >
2023-01-14 09:19:47 +00:00
< h3 id = "--or--command-line" > " :!" ( or " !" ) command line< / h3 >
2023-01-09 00:03:02 +00:00
< p > Pressing " :" or " !" with hardware keyboard sets focus on the address bar.< br >
The command line could be a " .js" , " .sh" or other executable with arguments. Ex. " :!s g keyword" could invoke " s.js" executable with the whole string as arguments (" s.sh" or " s" if file exists, here " g" as google search engine); " :! g keyword" would invoke the file " .js" or " .sh" as executable.< / p >
2023-01-12 01:45:05 +00:00
< p > For regular (non-js) executables, the standard output of the command line could be treated as lines of urls (or html, plain text).< / p >
< p > < a href = "i:0h.js:../searchurl/txt/web.js" > Install the example file " .js" (supporting search engine bundle)< / a > < br >
< a href = "i:0hs.sh:../searchurl/txt/web.sh" > Install the example file " s.sh" < / a > < / p >
2023-02-20 14:03:43 +00:00
< p > Click the following links to make commands appear in address bar, then press " enter" to execute:< br >
< a href = "i:15:!cd /data/data/com.termux/files/home;ln -s ../../../info.torapp.uweb/files uweb" > Make uweb configuration folder accessible by file managers with termux installed< / a > < br >
(< a href = "https://wiki.termux.com/wiki/Internal_and_external_storage" > File manager list at end of the page< / a > )< / p >
2023-01-09 00:03:02 +00:00
< h3 id = "address-bar-command-modes" > Address bar command modes< / h3 >
< p > < a href = "../cmds/index.html" > Commands< / a > are the best for repeated execution of an instruction. Address bar command modes provide ways to run different commands in the same category easily.< / p >
2022-10-02 09:17:22 +00:00
< p > The configure file " default.acmd" has the exactly same format as < a href = "../cmds/index.html" > default.cmds< / a > . Click the following links to install new modes (cold start the app to take effect, then long click the " refresh" button to switch modes):< / p >
2022-07-31 08:18:31 +00:00
< p > < a href = "i:0gdefault.acmd::shell:text/plain:%25s%0A" > Shell command mode< / a > < / p >
2022-09-15 01:58:13 +00:00
< p > < a href = "i:0gdefault.acmd::bc:text/plain:echo '%25s'|bc -l -q%0A" > GNU bc (basic calculator) command mode (need termux for Android 10- )< / a > < / p >
2022-07-31 08:18:31 +00:00
< p > < a href = "i:0gdefault.acmd::plot 2D function:image / svg % 2Bxml:gnuplot -e ' set term svg ; set
output;plot %25s'%0A">GNUPlot plot (2D function), needs uweb adapted termux & gnuplot< / a > < / p >
< p > < a href = "i:0gdefault.acmd::plot 3D function:image / svg % 2Bxml:gnuplot -e ' set term svg ; set
output;splot %25s'%0A">GNUPlot plot (3D function), needs uweb adapted termux & gnuplot< / a > < / p >
< / div >
2023-03-05 03:12:05 +00:00
< p > Last Modified: 18 February 2023< br >
2023-03-07 02:07:05 +00:00
use :! instead of shell commandline mode for file manager access< br >
< pre > < / pre >
< / p >
2023-05-09 03:11:05 +00:00
< script >
if(location.href.indexOf("/zh/")>0){
var script = document.createElement("script");
script.type = "text/javascript";
script.src = "../../js/gissues.js";
script.setAttribute("repo","jamesfengcao/uweb");
script.setAttribute("issue-term","title");
script.setAttribute("theme","github-light");
script.async = true;
document.body.appendChild(script);
}
< / script >
2023-05-06 01:56:44 +00:00
< script id = 'jsgiscus'
src='https://giscus.app/client.js'
data-repo="torappinfo/uweb"
data-repo-id="MDEwOlJlcG9zaXRvcnkzMDIyMDU3MjE="
data-category="Announcements"
data-category-id="DIC_kwDOEgNLGc4CQjsh"
2023-05-06 02:49:29 +00:00
data-mapping="title"
2023-05-06 01:56:44 +00:00
data-strict="0"
data-reactions-enabled="1"
data-emit-metadata="0"
data-input-position="top"
data-theme="light"
data-lang="en"
data-loading="lazy"
2023-05-06 02:49:29 +00:00
crossorigin="anonymous" async>
2023-05-06 01:40:28 +00:00
< / script >
2022-07-31 08:18:31 +00:00
< / body >
< / html >