Questions tagged [command-window]

51 questions
0
votes
1 answer

XCode equivalent for command window in Visual studio.net

Is there any equivalent in XCode for the command window in VisualStudio, in a way that lets me modify variables values while in debug mode (standing on a breakpoint), by evaluating expression, but not in read-only mode like the console. Is there…
LolaRun
  • 5,526
  • 6
  • 33
  • 45
0
votes
1 answer

Can you simulate clicking enter from Batch file?

I am writing a short batch file, that I will run from the command window, that goes through all the subfolders that start with a sequence ("01" in my case) and runs a .exe file located in each folder. @echo off CD…
eacuna
  • 1
  • 1
0
votes
1 answer

PyCharm environment vs Matlab environment?

I am new to Python and PyCharm and I am having troubles using my Matlab knowledge here on PyCharm. The thing is that in Matlab you have: Your script where you write your matlab code Workplace where the results or variables are saved Command…
0
votes
1 answer

cURL - file upload with file path location not working with windows command prompt

I am trying to send a file to server using cURL command from windows command prompt. But getting error message as "{"detail":"JSON parse error - No JSON object could be decoded"}". But using postman I am able to send a file to server. Below given…
0
votes
1 answer

SQL*PLUS - Create a new folder while spooling

I've got these dynamic scripts. The first one stores the DDL of the tables in a file with the name of the table that is currently spooling, inside the specify folder: set pagesize 0 set linesize 100 set long 90000 SET TERMOUT OFF spool…
0
votes
1 answer

PL/SQL - Update a table after spooling the metadata into a file

I've got the following script, which stores the metadata for the tables that are in the MTTO_TAB_EXIST_ALL column. The files are stored individually and its file name is the same of the current spooling table set pagesize 0 set linesize 100 set…
0
votes
1 answer

Create tables using command windows SQL Server

I wanted to use tables from here https://github.com/prograhammer/countries-regions-cities My command line looks like this sqlcmd -S SERVERNAME -d DATABASENAME -i script.sql I navigate to the folder with the unzipped script from given website. It…
goscamp
  • 27
  • 8
0
votes
1 answer

How to get stream output in command window and text document simultaneously

Using os.system('ping 127.0.0.1 -t >> new.txt'). I am able to get the ping result in new.txt document. How to get the ping result in command window and text file at the same time in case of stream output like this...?
Naresh G
  • 15
  • 7
0
votes
1 answer

VBScript Command window - passing a command syntax

I'm trying to get a command to run in a cmd vindow via VBS. Just like this answer: How to keep the VBScript command window open during execution The command I'm trying to issue is this, as written it works in a .cmd file. "\Program Files…
shorton
  • 323
  • 3
  • 13
0
votes
1 answer

Visual Studio 2015 Command Window Suggestions Text Cut Off

To find files in my solution, I rely heavily on the command window - I type "of" (for 'open file'), then the name of the file, and choose the one I want from the selections that pop up. However, on my new PC, the window that pops up with the options…
user756366
  • 467
  • 6
  • 24
0
votes
1 answer

Printing progress in command window

I'd like to use fprintf to show code execution progress in the command window. I've got a N x 1 array of structures, let's call it myStructure. Each element has the fields name and data. I'd like to print the name side by side with the number of…
user6645417
0
votes
1 answer

mtimesx not work in script

I am trying to use mtimesx library on matlab 2016a, win 10 64bit, I compile this library and the following code runs in command window: >> a=rand(2,4,2); >> b=rand(4,5,2); >> d=mtimesx(a,b) d(:,:,1) = 0.5234 0.7756 0.6265 0.7531 …
A.Mani
  • 71
  • 1
  • 9
0
votes
1 answer

Is there any way to run Visual Studio command-window commands as pre- or post-build steps?

I've tried to put some command-window commands (Or "internal commands"? I wish Microsoft had given these a more specific name to make discussing and searching easier.) like File.OpenFile or Edit.Goto in the Post-Build Command section of my project…
0
votes
1 answer

Matlab Eval function keeps returning information to command window

A part of my script consists of the following two codes, but for some reason the eval function is still returning information to the command window. As you can see I use a semicolon at the end of the lines but I'm guessing it is not placed right.…
Laura
  • 25
  • 3
0
votes
1 answer

C++ Can I print the content of 1 or 2 dim array using Visual Studio's Command window?

C++ Can I print the content of 1 or 2 dim array using Visual Studio's Command window? I guess it comes down to whether a "command window" support some kind of loop and print (?) syntax or not.
Steve
  • 551
  • 2
  • 8
  • 18