Rename read.cs.js
-> read-s.cs.js
This commit is contained in:
parent
a225c27e6a
commit
cf29238c9a
5 changed files with 25 additions and 25 deletions
|
@ -34,7 +34,7 @@ answer = readlineSync.question([query[, options]])
|
||||||
```
|
```
|
||||||
|
|
||||||
Display the `query` to the user, and then return the user's response after it has been typed and Enter key was pressed.
|
Display the `query` to the user, and then return the user's response after it has been typed and Enter key was pressed.
|
||||||
You can specify `options` (see [Options](#options)). **You should consider `noEchoBack` option, if the user inputs the secret text (e.g. password).**
|
You can specify `options` (see [Options](#options)). **If the user inputs the secret text (e.g. password), you should consider `noEchoBack` option.**
|
||||||
|
|
||||||
The `query` may be string, or may not be (e.g. number, Date, Object, etc.). This is converted to string (i.e. `toString` method is called) before it is displayed.
|
The `query` may be string, or may not be (e.g. number, Date, Object, etc.). This is converted to string (i.e. `toString` method is called) before it is displayed.
|
||||||
|
|
||||||
|
@ -45,7 +45,7 @@ input = readlineSync.prompt([options])
|
||||||
```
|
```
|
||||||
|
|
||||||
Display the current prompt (See `setPrompt` method) to the user, and then return the user's response after it has been typed and Enter key was pressed.
|
Display the current prompt (See `setPrompt` method) to the user, and then return the user's response after it has been typed and Enter key was pressed.
|
||||||
You can specify `options` (see [Options](#options)). **You should consider `noEchoBack` option, if the user inputs the secret text (e.g. password).**
|
You can specify `options` (see [Options](#options)). **If the user inputs the secret text (e.g. password), you should consider `noEchoBack` option.**
|
||||||
|
|
||||||
### setPrompt
|
### setPrompt
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* global WScript:false */
|
/*jshint wsh:true */
|
||||||
|
|
||||||
var oExec;
|
var oExec;
|
||||||
|
|
|
@ -47,7 +47,7 @@ powershell /? >NUL 2>&1
|
||||||
:: Win XP and Server2003 have `ScriptPW` (`scriptpw.dll`).
|
:: Win XP and Server2003 have `ScriptPW` (`scriptpw.dll`).
|
||||||
:: In the systems that don't have both, an error is thrown.
|
:: In the systems that don't have both, an error is thrown.
|
||||||
if ERRORLEVEL 1 (
|
if ERRORLEVEL 1 (
|
||||||
set "exec_line=cscript //nologo "%~dp0read.cs.js""
|
set "exec_line=cscript //nologo "%~dp0read-s.cs.js""
|
||||||
) else (
|
) else (
|
||||||
set "exec_line=powershell -Command "$text = read-host -AsSecureString; ^
|
set "exec_line=powershell -Command "$text = read-host -AsSecureString; ^
|
||||||
$BSTR = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR^($text^); ^
|
$BSTR = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR^($text^); ^
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Silent Read
|
# Silent Read : emulate `read -s` of bash/zsh
|
||||||
read_s() {
|
read_s() {
|
||||||
stty --file=/dev/tty -echo echonl 2>/dev/null || \
|
stty --file=/dev/tty -echo echonl 2>/dev/null || \
|
||||||
stty -F /dev/tty -echo echonl 2>/dev/null || \
|
stty -F /dev/tty -echo echonl 2>/dev/null || \
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"name": "readline-sync",
|
"name": "readline-sync",
|
||||||
"version": "0.7.6",
|
"version": "0.7.6",
|
||||||
"title": "readlineSync",
|
"title": "readlineSync",
|
||||||
"description": "Synchronous Readline",
|
"description": "Synchronous Readline for interactively running to have a conversation with the user via a console(TTY).",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"readline",
|
"readline",
|
||||||
"synchronous",
|
"synchronous",
|
||||||
|
|
Loading…
Reference in a new issue