Top "Interactive" questions

Interactive software accepts and responds to input from humans, in contrast to noninteractive software, which operate without human contact.

Interactive shell using Docker Compose

Is there any way to start a interactive shell in a container using Docker Compose only? I've tried something like …

shell docker interactive docker-compose
How to convert string to integer in UNIX

I have d1="11" and d2="07". I want to convert d1 and d2 to integers and perform d1-d2. How do …

linux shell unix interactive
How can I start an interactive console for Perl?

How can I start an interactive console for Perl, similar to the irb command for Ruby or python for Python?

perl console interactive read-eval-print-loop
Passing arguments to an interactive program non-interactively

I have a bash script that employs the read command to read arguments to commands interactively, for example yes/no …

bash interactive non-interactive
Interactive matplotlib plot with two sliders

I used matplotlib to create some plot, which depends on 8 variables. I would like to study how the plot changes …

python keyboard matplotlib interactive
Read password from stdin

Scenario: An interactive CLI Python program, that is in need for a password. That means also, there's no GUI solution …

python passwords prompt interactive
Is there a possibility to execute a Python script while being in interactive mode

Normally you can execute a Python script for example: python myscript.py, but if you are in the interactive mode, …

python interactive mode
interactive lua: command line arguments

I wish to do lua prog.lua arg1 arg2 from the command line Inside prog.lua, I want to say, …

command-line lua interactive
Including JavaScript in SVG

I am trying to create an interactive SVG code with JavaScript, by embedding the JavaScript in the SVG. I don't …

javascript svg interactive
How to finish sys.stdin.readlines() input?

This might be a silly question, but as I can't find an answer, I have to ask it. In interactive …

python input interactive sys