How to show output one screen by another [closed] - ansible

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed last year.
Improve this question
Hi I use command "cat ansible.cfg". Once the command is entered, all the output goes away on the screen. I want to see it one screen by one. What correct command should i use? Thank you

This isn't really an ansible question, as you are really just using the cat command to view a text tile that happens to be an ansible config.
See this link for information on how to view files in Unix/Linux: https://www.baeldung.com/linux/files-cat-more-less
In short, however, less and more are both utilities for viewing files one page at a time like you requested. Just enter more ansible.cfg and then use the space bar to advance a page at a time.

Related

Is there a way to see what command are run on your computer? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 1 year ago.
Improve this question
I was wondering how I could see the actions that are done on my computer but on my cmd prompt.
For example: Imagine I click on the shortcut Google Chrome on my desktop, then this will appear on my cmd prompt (or anywhere else):
C:\Program Files (x86)\Google\Chrome\Application\Chrome.exe
modulo the - and -- arguments but that was just for the example.
Thanks!
Try Process Monitor (also called ProcMon), filtered on ProcessCreate. It'll list every process that gets created, along with the arguments and lots of other useful information.

The Window Title of Command Prompt [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 1 year ago.
Improve this question
I don't want the window title name of the command line to change. When i make shortcut or open it in different location, window title name of cmd is changing. How can i stop it?
Thanks.
In short: you can't. CMD.EXE internally calls SetConsoleTitle (or some equivalent), and there isn't an option to stop it from doing so.
What you can do is manually reset the title after each command (for example when you run a batch file with multiple commands inside and want to end up with some specific title). Use the title command to do so from within a batch file or from the command prompt interactively.
(There are also more involved options, but they all have quirks.)
I think some console alteratives (like Windows Terminal or ConEmu) let specify that the title should not change, but I'm not sure, you'll have to try.
Maybe clarify your question with what you are really trying to achieve, or why the changing title is an issue for you.

How to Open File at Windows startup (when I turn on laptop) [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 5 years ago.
Improve this question
when i turn on my laptop a dialog box opens
asking me to how to open the file. It comes after logging into my wn10 user account. It comes before i start any programs. At first i was ignoring this but wen i select notepad from the list and viewed it this was shown.
I dont know what it is or y it is happenining, i have done nothing related to this. how to stop this?
Normally is when a file named with your username is created. You need just to delete it and it'll be ok. It is located in your Users folder. Follow one of these links if you don't find its location: first link and second link.

How can I open a program always in 600x400? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
How can I open a program always in 600x400? When I restart the computer I don't wanna configure again, how can I do this?
Observation: My resolution is 1920x1080 and I wanna open the program in 600x400 without change my resolution.
Sorry for my english, I don't speak very well this language.
It depends on the program you want to open.
Some programs have a specific setting for this case.
Take a look on the documentation, or you can try to go to Regedit and look for the Key of program that you want to start with 600x400.
In the Key HKEY_LOCAL_MACHINE\Software\(CompanyName)\(SoftwareName)
Normally there is some settings about size of the window.
Good luck.
To change your display resolution from the command line - try the free nircmd.exe from http://www.nirsoft.net/

Terminal Command for Stock Information [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
I would like to have a command that gets me the value a stock closed at.
How can I do this?
This is a pretty open ended question and not very specific, so I'm basically just thinking out loud here. Tou would have to write a command line program that took in a stock code and then went off to some kind of web service and fetched the appropriate value for that code.
So do you want something that just outputs to the terminal window (ie. "standard out")?
>stock AAPL
339.30
stock would be the name of the compiled binary.
The program takes in a single argument for the stock code. It send that code to a web service that provides pricing information, then parses the result and spites it back out.

Resources