Change echo to printf (read.sh)

This commit is contained in:
anseki 2014-06-29 17:41:12 +09:00
parent 7afb24a972
commit 0c8f49c535
3 changed files with 3 additions and 3 deletions

View file

@ -1,3 +1,3 @@
read LINE </dev/tty
echo -n $LINE
printf '%s' "$LINE"
exit 0

View file

@ -68,7 +68,7 @@ function _readlineShell() {
// The quote (") is escaped by node before parsed by shell. Then use ENV{Q}.
shellPath = 'cmd.exe';
args = ['/V:ON', '/S', '/C', '%Q%' + __dirname + '\\read.bat%Q% >%Q%' + pathStdout +
'%Q% & (ECHO !ERRORLEVEL!)>%Q%' + pathStatus + '%Q% & (ECHO 1)>%Q%' + pathDone + '%Q%'];
'%Q% & (echo !ERRORLEVEL!)>%Q%' + pathStatus + '%Q% & (echo 1)>%Q%' + pathDone + '%Q%'];
} else {
shellPath = '/bin/sh';
args = ['-c', '(' + shellPath + ' "' + __dirname + '/read.sh") >"' + pathStdout +

View file

@ -1,7 +1,7 @@
{
"name": "readline-sync",
"description": "Synchronous Readline",
"version": "0.2.4",
"version": "0.2.5",
"homepage": "https://github.com/anseki/readline-sync",
"author": {
"name": "anseki"