Questions tagged [non-interactive]

96 questions
1
vote
1 answer

How to understand and avoid non-interactive mode errors when running ispell from script?

Background Ispell is a basic command line spelling program in linux, which I want to call for a previously collected list of file names. These file names are recursively collected from a latex root file for example. This is usefull when requiring to…
GEW
  • 11
  • 2
1
vote
2 answers

How to catch all elisp function calls that require user interaction?

I want to write a function that will call a list of functions in emacs (specifically, kill-buffer-query-functions), but if any of them require user interaction, I want to have them simply return nil instead, so that the whole thing will run…
Ryan C. Thompson
  • 40,856
  • 28
  • 97
  • 159
1
vote
1 answer

WPF application stops interacting on screen rotate

We have a WPF app which runs fine, but a user reported that it locks up when the screen is rotated. (Tablets will do that!) The app actually renders fully after the rotate but stops responding to the mouse/keyboard. It doesn't show as…
user1867382
  • 414
  • 3
  • 13
1
vote
0 answers

Chef - any best-practice for editing attributes or data bags non-interactively from script (not using EDITOR)

I want to store a build version number that can be used later in a recipe to resolve the path to an msi in the "source" line. This version is specific to an environment. I'm undecided whether to use an environment attribute or a data bag, but either…
user3488588
  • 21
  • 1
  • 3
1
vote
2 answers

I have a div that I can't interact with

The website is here: http://www.ourcourse.ca/Pages/Drama/dramaresources.php And I just realized I can't highlight text or click on links in the centre div. I read somewhere that having an overlapping div might cause the issue... so I tried changing…
1
vote
1 answer

Simple c++ program fails to run as a scheduled-task (interactive/non-interactive issue?)

I'm running Win 7 x64 and I've written a very simple c++ program with Microsoft Visual c++ 2010 express, to be run as a task in task scheduler. this is the programs code (there's no resource files or header files): #include int WINAPI…
J_Banner
  • 11
  • 3
0
votes
1 answer

Is there a way to expand aliases in a non-interactive sh shell?

I have a collection of aliases defined in ~/.aliases which I would like to make available to sh even when it is run non-interactively. My system has been setup in the typical way so that sh is a symlink to bash. When bash is run non-interactively…
atomicpirate
  • 657
  • 5
  • 12
0
votes
0 answers

how to run node/ razzle build within dockerfile and docker-compose in noninteractive mode? to avoid prompt?

I dockerize a web application using docker-compose. So, I am using containers / services for "node", "traefik" and "db" (postgres db) within my docker-compose YAML file. In my Dockerfile for "node" I want to finally build the production build and…
0
votes
1 answer

Pulse DTR and log serial output in non-interactive mode

I want to log the serial output of a device. To do so, I need to Send a 1 second DTR pulse that resets the device Use a non-interactive serial monitor that outputs to stdout So far I have not found any shell tools that can do any of the two in…
AlexLoss
  • 491
  • 4
  • 13
0
votes
1 answer

How to request a google API OAuth2 token that works non-interactively with R httr?

I want to create a google slide presentation from a non-interactive R script. I got this to work interactively with the following setup and functions: # setup: # create a .secrets/ directory in the working directory, which contains a JSON file #…
mandmeier
  • 355
  • 5
  • 16
0
votes
0 answers

How to "pipe" console values into interactive Windows PowerShell command (to make it non-interactive)

Does Windows PowerShell have anything that's similar to piping user-supplied values into interactive Unix/Linux bash commands to make them run non-interactive? What I mean is something like…
Altus
  • 23
  • 4
0
votes
1 answer

pam-auth-update non interactive mode not reflecting changes

I want to run pam-auth-update on a specific profile in non-interactive mode. This must be run from a script so I cant work with an interface to enable. I have already tried the following: pam-auth-update --enable "my module" pam-auth-update…
Dave
  • 727
  • 1
  • 9
  • 20
0
votes
1 answer

Most secure way to authenticate in Azure DevOps Repo from non-interactive script

I need to work with Azure DevOps Repository (clone, push, pull) from non-interactive script. I've found only the solution to authenticate using PAT…
0
votes
1 answer

How to query SharePoint Term Store using App only credential in C#

I am trying to build an application that gets terms from a term store in SharePoint Online, using App only permissions. For that, I was hoping to leverage the PnP Framework SDK. I know for a fact that, currently, the Graph API does not support term…
0
votes
0 answers

Firefox in non-interactive mode?

I have a scraping application that uses Firefox to read finance variables in certain web pages every minute. It's implemented as an addon with content script and background script. The content script refreshes the page once a minute, waits for the…