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" / >
< link rel = "stylesheet" href = "/uwebzh/style.css" type = "text/css" / >
< title > Address bar command modes< / title >
< 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" >
< h1 class = "title" > Address bar command modes
< br >
< span class = "subtitle" > < / span >
< / h1 >
< ul class = "tags" >
< / ul >
2022-08-25 02:40:29 +00:00
< 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-07-31 08:18:31 +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" botton to switch modes):< / p >
< 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 >
< h4 id = "shell-command-mode" > Shell command mode< / h4 >
< p > Click the following links to make commands appear in address bar, then press " enter" to execute:< br >
2022-08-25 02:40:29 +00:00
< a href = "i:15cd;toybox mkdir -p /sdcard/Download/app;toybox ln -s /sdcard/Download/app" > symbolic link " app" folder to be under the " Download" folder< / a > < / p >
2022-09-15 02:07:06 +00:00
< p > < a href = "i:15cd;cd ../..;toybox cp -r files /sdcard/Download/uweb;toybox rm -rf files;toybox ln -s /sdcard/Download/uweb files" > symbolic link configuration folder to " /sdcard/Download/uweb" < / a > < / p >
2022-09-17 13:41:13 +00:00
< p > < a href = "i:15cd /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 > < / p >
2022-07-31 08:18:31 +00:00
< / div >
< / body >
< / html >