Searched full:shell (Results 1 – 25 of 1934) sorted by relevance
12345678910>>...78
11 /// Shell with auto-generated completion script available.14 pub enum Shell { enum15 /// Bourne Again SHell (bash)17 /// Elvish shell19 /// Friendly Interactive SHell (fish)23 /// Z SHell (zsh)27 impl Display for Shell { implementation36 impl FromStr for Shell { implementation50 impl ValueEnum for Shell { implementation53 Shell::Bash, in value_variants()[all …]
56 for /F "usebackq delims==" %%r in (`hdc shell param get const.product.cpu.abilist`) DO (63 hdc shell rm -rf /data/tests/libc-test64 hdc shell mkdir /data/tests65 hdc shell mkdir %REMOTE%68 hdc shell mkdir /tmp69 hdc shell mkdir /dev/shm80 hdc shell chmod +x %REMOTE%/src/*82 hdc shell mount -o rw,remount /83 hdc shell chmod 777 /etc84 hdc shell cp /etc/ld-musl-namespace-%ARCH%.ini /etc/ld-musl-namespace-%ARCH%.ini.bak[all …]
59 ABILIST=$(${CMD} shell param get const.product.cpu.abilist)85 ${CMD} shell rm -rf ${REMOTE}86 ${CMD} shell mkdir /data/tests87 ${CMD} shell mkdir ${REMOTE}90 ${CMD} shell mkdir /tmp91 ${CMD} shell mkdir /dev/shm96 ${CMD} shell mv ${REMOTE}/src/libc-test/* ${REMOTE}/src102 ${CMD} shell chmod +x ${REMOTE}/src/*103 ${CMD} shell mount -o rw,remount /104 ${CMD} shell chmod 777 /etc[all …]
12 hdc_std shell mount -o remount,rw /13 hdc_std shell mkdir "data/tmp"14 hdc_std shell rm -rf %REMOTE_ROOT%15 hdc_std shell mkdir %REMOTE_ROOT%16 hdc_std shell mkdir %REMOTE%17 hdc_std shell mkdir %RPATH_TEST_DIR%18 hdc_std shell mkdir %NS_LIB_ONE_DIR%19 hdc_std shell mkdir %NS_LIB_TWO_DIR%20 hdc_std shell mkdir %NS_LIB_TWO_IMPL_DIR%25 hdc_std shell chmod +x %REMOTE%[all …]
14 ${CMD} shell mount -o remount,rw /15 ${CMD} shell mkdir data/tmp16 ${CMD} shell rm -rf ${REMOTE_ROOT}17 ${CMD} shell mkdir ${REMOTE_ROOT}18 ${CMD} shell mkdir ${REMOTE}19 ${CMD} shell mkdir ${RPATH_TEST_DIR}20 ${CMD} shell mkdir ${NS_LIB_ONE_DIR}21 ${CMD} shell mkdir ${NS_LIB_TWO_DIR}22 ${CMD} shell mkdir ${NS_LIB_TWO_IMPL_DIR}28 ${CMD} shell chmod +x ${REMOTE}[all …]
116 shell = MockShell()117 f = run.StdInputFile(shell, 'stdin')130 shell = MockShell()131 f = run.StdInputFile(shell, 'stdin')139 shell = MockShell()140 f = run.StdInputFile(shell, 'stdin')141 shell.push(['one\n', 'two\n', ''])143 shell.push(['one\n', 'two\n', ''])145 shell.push(['one\n', 'two\n', ''])147 shell.push(['one\n', 'two\n', 'three\n', ''])[all …]
20 $HDC shell "mount -o rw,remount /vendor"21 $HDC shell "rm -rf /vendor/etc/soc_perf/*"22 $HDC shell "echo 1700000 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq"23 $HDC shell "echo 2343000 > /sys/devices/system/cpu/cpu4/cpufreq/scaling_min_freq"24 $HDC shell "echo 3130000 > /sys/devices/system/cpu/cpu7/cpufreq/scaling_min_freq"25 $HDC shell "echo 4-7 > /dev/cpuset/top-app/cpuset.cpus"26 $HDC shell "echo 4-7 > /dev/cpuset/graphic/cpuset.cpus"28 $HDC shell "cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq"29 $HDC shell "cat /sys/devices/system/cpu/cpu1/cpufreq/scaling_cur_freq"30 $HDC shell "cat /sys/devices/system/cpu/cpu2/cpufreq/scaling_cur_freq"[all …]
1 /* chsh.c - Change login shell.13 usage: chsh [-s SHELL] [USER]15 Change user's login shell.17 -s Use SHELL instead of prompting19 Non-root users can only change their own shell to one listed in /etc/shells.32 char *user, *line, *shell, *encrypted; local56 // Get new shell (either -s or interactive)58 if (toys.optflags) shell = TT.s;60 xprintf("Changing the login shell for %s\n"62 " Login shell [%s]: ", user, passwd_info->pw_shell);[all …]
70 static void run_shell(char *shell) in run_shell() argument72 snprintf(toybuf,sizeof(toybuf), "-%s", shell); in run_shell()73 execl(shell, toybuf, NULL); in run_shell()74 error_exit("Failed to spawn shell"); in run_shell()84 "LD_AOUT_PRELOAD", "LD_NOWARN", "LD_KEEPDIR", "SHELL", NULL in sulogin_main()86 char *shell = NULL, *pass = NULL, **temp = forbid; in sulogin_main() local115 if ((shell = getenv("SUSHELL")) || (shell = getenv("sushell")) in sulogin_main()116 || (shell = pwd->pw_shell)) in sulogin_main()117 run_shell((shell && *shell)? shell: "/bin/sh"); in sulogin_main()
./autogen.sh ./COMMIT_NOTES ./config.h ./configure.ac . ...
187 -DCMAKE_C_COMPILER=$(shell pwd)/$(TOOLCHAIN_X86)/bin/$(TOOLCHAIN_X86_PREFIX)-gcc \188 -DCMAKE_AR=$(shell pwd)/$(TOOLCHAIN_X86)/bin/$(TOOLCHAIN_X86_PREFIX)-ar \189 -DCMAKE_RANLIB=$(shell pwd)/$(TOOLCHAIN_X86)/bin/$(TOOLCHAIN_X86_PREFIX)-ranlib \202 -DCMAKE_C_COMPILER=$(shell pwd)/$(TOOLCHAIN_X86_64)/bin/$(TOOLCHAIN_X86_64_PREFIX)-gcc \203 -DCMAKE_AR=$(shell pwd)/$(TOOLCHAIN_X86_64)/bin/$(TOOLCHAIN_X86_64_PREFIX)-ar \204 -DCMAKE_RANLIB=$(shell pwd)/$(TOOLCHAIN_X86_64)/bin/$(TOOLCHAIN_X86_64_PREFIX)-ranlib \217 -DCMAKE_C_COMPILER=$(shell pwd)/$(TOOLCHAIN_ARM)/bin/$(TOOLCHAIN_ARM_PREFIX)-gcc \218 -DCMAKE_AR=$(shell pwd)/$(TOOLCHAIN_ARM)/bin/$(TOOLCHAIN_ARM_PREFIX)-ar \219 -DCMAKE_RANLIB=$(shell pwd)/$(TOOLCHAIN_ARM)/bin/$(TOOLCHAIN_ARM_PREFIX)-ranlib \232 -DCMAKE_C_COMPILER=$(shell pwd)/$(TOOLCHAIN_ARM_V7A)/bin/$(TOOLCHAIN_ARM_V7A_PREFIX)-gcc \[all …]
11 CC=$(shell icu-config --cc)12 CXX=$(shell icu-config --cxx)13 CPPFLAGS=$(shell icu-config --cppflags)14 CFLAGS=$(shell icu-config --cflags)15 CXXFLAGS=$(shell icu-config --cxxflags)16 LDFLAGS =$^ $(shell icu-config --ldflags)17 LDFLAGS_USTDIO =$(shell icu-config --ldflags-icuio)18 INVOKE=$(shell icu-config --invoke)19 GENRB=$(shell icu-config --invoke=genrb)21 PKGDATA=$(shell icu-config --invoke=pkgdata)[all …]
25 * Python shell window (interactive interpreter) with colorizing42 IDLE has two main window types, the Shell window and the Editor window. It is55 File menu (Shell and Editor)76 tree structure. In the shell, open a module first.104 Shell, ask to quit execution). Calling ``exit()`` or ``close()`` in the Shell105 window also closes Shell. If this is the only window, also exit IDLE.110 Edit menu (Shell and Editor)209 including lines within multiline strings. Except for Shell windows,221 Do :ref:`Check Module <check-module>`. If no error, restart the shell to clean the222 environment, then execute the module. Output is displayed in the Shell[all …]
39 capture_output=False, shell=False, cwd=None, timeout=None, \94 >>> subprocess.run("exit 1", shell=True, check=True)116 Changed Windows shell search order for ``shell=True``. The current275 a single string, either *shell* must be :const:`True` (see below) or else321 If *shell* is ``True``, the specified command will be executed through322 the shell. This can be useful if you are using Python primarily for the324 convenient access to other shell features such as shell pipes, filename327 implementations of many shell-like features (in particular, :mod:`glob`,339 Read the `Security Considerations`_ section before using ``shell=True``.355 stderr=None, preexec_fn=None, close_fds=True, shell=False, \[all …]
198 .Nd MirBSD Korn shell220 is a command interpreter intended for both interactive and shell224 shell language and largely compatible to the original Korn shell.226 sometimes does take portable shell scripting or various standards235 name to the shell; not all make sense, have been tested or work at all though.244 Interactive shell.245 A shell that reads commands from standard input is251 An interactive shell has job control enabled, ignores the272 Login shell.273 If the name or basename the shell is called with (i.e. argv[0])[all …]
5 <p>This <a href="@@RELPATH@@mksh.htm">shell</a> is spelt either8 initial lowercase letter</a>; this is important) or “MirBSD Korn Shell”,12 Shell”, although it is manageable, mostly for Slavic speakers, to actually21 <p>mksh is a so-called (Unix) “shell” or “command interpreter”, similar to25 also used to write so-called (shell) “script”s, short programs made by27 <p>On Android, mksh is used as the system shell — basically, the one40 for security reasons common on Unix systems which the shell is designed50 have gotten this shell through komh’s port on Hobbes, or from his OS/256 Title: How does this relate to ksh or the Korn Shell?58 <p>The Korn Shell (AT&T ksh) was authored by David Korn; two major[all …]
9 ```shell29 ```shell30 hdc shell "mkdir /data/local/tmp/mindspore_test"39 ```shell40 hdc shell "chmod 755 /data/local/tmp/mindspore_test/MindSporeUnitTest"41 hdc shell "/data/local/tmp/mindspore_test/MindSporeUnitTest"55 ```shell56 hdc shell "chmod 755 /data/local/tmp/mindspore_test/MindSporeUnitTest"57 hdc shell "/data/local/tmp/mindspore_test/End2EndTest"
29 "../shell"61 if err := shell.Shell(gitTimeout, exe, wd, "add", file); err != nil {83 return shell.Shell(gitTimeout, exe, wd, args...)111 return shell.Shell(gitTimeout, exe, wd, args...)126 if err := shell.Shell(gitTimeout, exe, path, cmds...); err != nil {147 if err := shell.Shell(gitTimeout, exe, path, cmds...); err != nil {158 return shell.Shell(gitTimeout, exe, path, "checkout", commit.String())163 return shell.Shell(gitTimeout, exe, dir, "apply", patch)168 out, err := shell.Exec(gitTimeout, exe, "", nil, "ls-remote", url, ref)193 …out, err := shell.Exec(gitTimeout, exe, "", nil, "log", at, "--pretty=format:"+prettyFormat, fmt.S…[all …]
78 <li><a class="reference internal" href="#file-menu-shell-and-editor">File menu (Shell and Editor)</…79 <li><a class="reference internal" href="#edit-menu-shell-and-editor">Edit menu (Shell and Editor)</…82 <li><a class="reference internal" href="#shell-menu-shell-window-only">Shell menu (Shell window onl…83 <li><a class="reference internal" href="#debug-menu-shell-window-only">Debug menu (Shell window onl…84 <li><a class="reference internal" href="#options-menu-shell-and-editor">Options menu (Shell and Edi…85 <li><a class="reference internal" href="#window-menu-shell-and-editor">Window menu (Shell and Edito…86 <li><a class="reference internal" href="#help-menu-shell-and-editor">Help menu (Shell and Editor)</…98 <li><a class="reference internal" href="#shell-window">Shell window</a></li>106 <li><a class="reference internal" href="#user-output-in-shell">User output in Shell</a></li>213 <li><p>Python shell window (interactive interpreter) with colorizing[all …]
35 - help() was not paging to the shell. Issue1650.42 - Shell was not colorizing due to bug introduced at r57998, Bug 1586.152 Shell hotkey from 's' to 'l'.160 - Retrieval of previous shell command was not always preserving indentation265 - The GUI was hanging if the shell window was closed while a raw_input()306 - Redirect the warning stream to the shell during the ScriptBinding check of311 The pane no longer appears in the shell window. Added capability to limit312 extensions to shell window or editor windows. Noam Raphael addition345 - Print correct exception even if source file changed since shell was370 - Added a banner to the shell discussing warnings possibly raised by personal[all …]
18 ```shell27 ```shell41 ```shell47 ```shell53 ```shell67 ```shell85 ```shell100 ```shell112 ```shell127 ```shell[all …]
23 adb shell input keyevent MENU24 adb shell input keyevent MENU25 adb shell setprop persist.traced.enable 126 adb shell setenforce 027 adb shell setprop debug.egl.traceGpuCompletion 128 adb shell am force-stop org.skia.skottie40 adb shell am start -n org.skia.skottie/.PerfActivity --ei renderer ${renderer} --ei file ${file}50 adb shell am start -n org.skia.skottie/.PerfActivity --ei renderer ${renderer} --ei file ${file}54 adb shell am force-stop org.skia.skottie
8 …<RegistryValue Root="HKCR" Key="Python.File\Shell\editwithidle$(var.PyTestExt)" Name="MUIVerb" Val…9 …<RegistryValue Root="HKCR" Key="Python.File\Shell\editwithidle$(var.PyTestExt)" Name="Subcommands"…13 …<RegistryValue Root="HKCR" Key="Python.NoConFile\Shell\editwithidle$(var.PyTestExt)" Name="MUIVerb…14 …<RegistryValue Root="HKCR" Key="Python.NoConFile\Shell\editwithidle$(var.PyTestExt)" Name="Subcomm…19 …<RegistryKey Root="HKCR" Key="Python.File\Shell\editwithidle\shell\edit$(var.MajorVersionNumber)$(…26 …<RegistryKey Root="HKCR" Key="Python.NoConFile\Shell\editwithidle\shell\edit$(var.MajorVersionNumb…34 …<RegistryKey Root="HKCR" Key="Python.File\Shell\editwithidle$(var.MajorVersionNumber)$(var.MinorVe…41 …<RegistryKey Root="HKCR" Key="Python.NoConFile\Shell\editwithidle$(var.MajorVersionNumber)$(var.Mi…
10 printf "Use \`adb shell 'pm list packages'\` to get a listing.\n\n"30 adb shell "setprop '${key}' '${remote_path}'"49 test '0' = "$(adb shell "test -e \"$1\"; echo \$?")";56 adb shell "setprop '${key}' ''"65 X="$(adb shell "du \"$1\" 2> /dev/null | dd bs=1 count=1 2> /dev/null")"69 # adb shell "wc -c \"$1\"" 2> /dev/null | awk '{print $1}'76 adb shell "setprop '${key}' ''"82 adb shell "setprop '${key}' ''"91 adb shell rm "$remote_path"