2
votes
3answers
29 views
Environment variable used in shell script appear blank in log file when run by cron
Forgive my ignorance, but I am somewhat new to shell scripting and the use of environment variables in Linux.
I have a script that performs a backup of a MySQL database. I have t …
5
votes
2answers
53 views
How do I get vim’s :sh command to source my bashrc?
Whenever I start a shell in vim using :sh, it doesn't source my ~/.bashrc file. How can I get it to do this automatically?
0
votes
2answers
16 views
Bazaar syntax to ignore directories matching a wildcard
I'm sure this is a dumb question, but what is the syntax to ignore my _Resharper.* directories with Bazaar? I've tried ignoring: \_Resharper*.* ./\_Resharper*.*, **/\_Resharper*.*, …
0
votes
0answers
17 views
Hotkey for Shellscript
Hello!
Under Linux I've always looked for some great simple software to take screenshots of a region, then upload it and throw the remote URL of the image to my clipboard. I got t …
1
vote
1answer
23 views
How to set mutiple words variable from command line input in C shell
I'm writing a script to search for a pattern in file. For example
scriptname pattern file1 file2 filenN
I use for loop to loop through arguments argv, and it does the job if all …
0
votes
3answers
21 views
How to egrep variable-Unix shell script
I’m trying to validate input by using egrep and regex.Here is the line from script (c-shell):
echo $1 | egrep '^[0-9]+$'
if ($status == 0) then
set numvar = $1
else
echo "Inva …
1
vote
5answers
91 views
How do I launch an editor from a shell script?
I would like my tcsh script to launch an editor (e.g., vi, emacs):
#!/bin/tcsh
vi my_file
This starts up vi with my_file but first displays a warning "Vim: Warning: Output is no …
0
votes
2answers
44 views
Generic Command Line SQL Program?
Is there any application/project that provides you with a command line SQL client that will work with multiple databases and/or provides a mechanism for writing your own drivers? …
2
votes
2answers
61 views
What is scala -i command-line option supposed to do ?
I'm finding the scala '-i' command line option quite useful for running some scala code and then dumping me into an interactive shell so I can prod/inspect the things it defined.
…
1
vote
3answers
61 views
Multi-threaded BASH programming - generalized method?
Ok, I was running POV-Ray on all the demos, but POV's still single-threaded and wouldn't utilize more than one core. So, I started thinking about a solution in BASH.
I wrote a ge …
0
votes
2answers
29 views
Convert a Cygwin PID to a Windows PID
I have a process I spawn with a Cygwin shell script, and I am unable to kill it with the kill command. Even with the Cygwin kill with the -f option, I get this message:
kill: coul …
0
votes
1answer
37 views
escape character in vim command
I want to run command like this:
vim -c "%g/blablabla/norm /str<ESC>cwSTR" file
How I write escape character in the command?
1
vote
4answers
61 views
How to check the ls version
This topic is about the util 'ls'
The BSD version uses the parameter '-G' to color up the output,
while the Linux version uses parameter '--color'
Also the environment variable to …
0
votes
1answer
47 views
Shell script to grab selected text and alter it?
How can I make a shell script that will know where the caret is and grab selected text, so I can wrap the text in something? For example, this is a script from a Textmate bundle:
…
0
votes
2answers
80 views
In UNIX shell scripting: What is $! ?
What is the meaning for $! in shell or shell scripting? I am trying to understand a script which has the something like the following.
local@usr> a=1
local@usr> echo $a
1
lo …
