Cmder command line issue - command-line

I have an issue in Cmder: when I type the touch command in the command line then it displays the following error message (Screenshot):
'touch' is not recognized as an internal or external command,
operable program or batch file.

You Must Install touch
npm install touch-cli -g

Related

I get this error when trying to set up a virtual environment using cmd on windows 10

'setprojectdir' is not recognized as an internal or external command,
operable program or batch file.
I have activated the environment and was following this tutorial
setprojectdir is a command from virtualenvwrapper. Do you have virtualenvwrapper-win installed? Check its bat-files are in the %PATH%.

Tronbox unbox and tronbox init commands are giving following error:-bash post-unpack.sh && rm post-unpack.sh && npm install

tronbox unbox metacoin
Downloading...
Unpacking...
Setting up...
Error: Command failed: bash post-unpack.sh && rm post-unpack.sh && npm install
'bash' is not recognized as an internal or external command,
operable program or batch file.
at ChildProcess.exithandler (child_process.js:289:12)
at ChildProcess.emit (events.js:182:13)
at maybeClose (internal/child_process.js:962:16)
at Process.ChildProcess._handle.onexit (internal/child_process.js:251:5)
I have tried the command tronbox unbox metacoon in windows 10.
How to solve the above mentioned error? Same error is coming on trying command tronbox init. What can be the possible reasons for this bash error?
'bash' is not recognized as an internal or external command,
operable program or batch file'
This error comes when you try to run a shell script directly in window's command prompt.
If this error comes while unboxing metacoin DApp of tron, there is nothing to worry about. Metacoin DApp will be unboxed properly in your specified directory.
In case of IDEs Truffle or Tronbox, Shell scripts are basically used for running some javascript file. So, if you using truffle or tronbox on Windows, you can run javascript file direclty without running shell script for it first.
Solution for running javascript directly from window's command Prompt:-
Open shell script in an editor and try to locate the name of the javascript file in it. Now you can run this javascipt file directly from window's command prompt.
You need to use the following command in Window's command prompt (pre-requisite:- node.js is installed in your system:-
node filename.js
I have tried this for both the IDEs, truffle and tronbox. It works just fine.

How to start C-STAT in IAR using command line in windows 7

I'm trying to use C-STAT in IAR using only the command line (for Night build).
How can I do that? and how will i get the output (which format).
according to the user manual i'm typing the following command - and getting an error message
" C:\Program Files (x86)\IAR Systems\Em bedded Workbench
7.3_2\arm\cstat>icstat --db a.db --checks commands commands.txt
'icstat' is not recognized as an internal or external command,
operable program or batch file. "
Is there a need to use "icstat" command in a specific path?
Is there a need to install an add-on, or any other program to enable command line commands?
Thanks
Now i found the path should be
"C:\Program Files (x86)\IAR Systems\Embedded Workbench 7.3_2\arm\bin"

unix command './' is not recognized

I'm using Matlab 2013a. The unix command './' doesn't work in matlab and returns the following error.
>> unix('./makeBeamxy.s')
'.' is not recognized as an internal or external command,
operable program or batch file.
Is there a way to solve it? I'm actually running this command from cygwin. But the 'system' command doesn't work very well because after I run this command, I need to keep the cgywin window open to run another command so that I can execute the file.
Try
unix(fullfile('.','makeBeamxy.s'))

'git' is not recognized as an internal or external command, operable program or batch file?

When I run "php composer.phar update" command, I got
"'git' is not recognized as an internal or external command,
operable program or batch file."
I have installed Git client and added PATH environment variable.
If you run "git" command in terminal, it works?
Maybe your PATH variable it's wrong.