Tagged Questions
The non-interactive tag has no wiki summary.
7
votes
4answers
2k views
Why aliases in a non-interactive Bash shell do not work
I am trying to use aliases in a non-interactive bash shell. I have defined my aliases in ~/.bashrc and I have set the variable BASH_ENV=~/startUpFile . The contents of the startUpFile are
source ...
5
votes
3answers
111 views
avoiding browser calls in R
I have an elaborate script that spans multiple functions (and files). For debugging purposes I need to embed browser calls into all sorts of nooks and crannies. When I presumably fix something, I want ...
2
votes
1answer
103 views
How to make apt-get accept New config files in a unattended install of debian from Repo
I am writing a script for a unattended install of a package that is in our Repo, It is a Software Package with one of the Debians marked config.
Is there any option that I can pass to ...
1
vote
2answers
21 views
bash seems to ignore BASH_ENV when accessed through a symlink
I'm working in a UNIX environment where /bin has been set up like this:
-rwxr-xr-x 1 root root 617144 Nov 19 2009 bash
lrwxrwxrwx 1 root root 4 Nov 23 2010 sh -> bash
In my environment ...
1
vote
3answers
98 views
non-interactive password SSH in JAVA
I have a program that requires cascaded SSH, i.e. it ssh A server and then using same connection ssh B server. Server A is acting as a bridge. I have an instance of shell which is used to ssh first ...
1
vote
0answers
62 views
OAuth non-interactive login
I'm building a console application that needs to access information from REST API secured with OAuth. Is it possible to run it in background i.e. w/o requiring browser redirection for authentication. ...
1
vote
2answers
92 views
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 ...
1
vote
3answers
131 views
Python importing modules differently when run interactively/non-interactively
One of my Python scripts runs in interactive mode but fails when run from the command line. The difference is that when run from the command line, it imports modules from a bad .egg file, and when run ...
0
votes
0answers
36 views
Inactive background objects in MATLAB figure
I populated a MATLAB figure with objects (lines and uicontrol text boxes) all of which have movement functions (and others) applicable. Many details are to be changed from the initial properties of ...
0
votes
1answer
123 views
running ipython in non-interactive mode
I was hoping it would be easy to rewrite a few bash scripts using ipython by using the "!" command. Unfortunately if I try to run ipython in non-interactive mode like so:
ipython -p sh ...
0
votes
1answer
78 views
Android - How to prevent a user interacting with Gallery
OK, I know this questions sounds weird at first, as GALLERY is designed to be user interactive, but, I like the Gallery functionality, as it suits a lot of my needs. i.e. I can give it a number of ...
0
votes
3answers
50 views
Is there any tips for minimising access to a public page without login?
I have a page that is just a non interactive display for a shop window.
Obviously, I don't link to it, and I'd also like to avoid people stumbling across it (by Google etc).
It will always be ...
0
votes
1answer
105 views
Running UI components in a service silently
I have a component, which silently retrieves some data from web using .NET WebBrowser component. It is written so that it will not show any dialog boxes, or any other interactive UI components, but ...
0
votes
2answers
436 views
Non-interactive scp
I'm creating a bash script to create new EC2 instances and then upload a file once the instance is created. I'm using scp to upload the file, however, since this is the first time I'm connecting to ...