0
votes
3answers
38 views
basic shell script
I have some video files all ending in .wmv .mov .mpg. I have music files ending in .mp3 .wma. And finally I have some text files all end in the extension .txt
I wrote a shell scri …
0
votes
1answer
33 views
vi editor query
I use vi quite often to edit files.
Usually I need the file to appear on screen with line numbers.
For this I do
set nu in edit mode.
What a drag! Can I automate this? Is there an …
3
votes
3answers
36 views
/bin/sh invoked from make doesn’t find command with unquoted dash-argument
I have a makefile to build some transducers using Xerox' finite state tools (xfst in this case), which I invoke in my makefile like so (except with a hard tab instead of spaces in …
1
vote
2answers
34 views
How do I simplify bash’s ‘eval “$TIME $BIN_FILE $BIN_OPTS &> $LOG_FILE”’ and keep it working?
I'm updating a bash script which serves as a program testing tool.
Previously, I had this line in a script working perfectly ($BIN_FILE is set to a relative path to the binary bein …
1
vote
1answer
18 views
Recommendation - Zsh vs FishShell. Scripting, productivity and poweruser perse.
I have spent sometime trying to pick one, on net comparisons are for zsh vs bash and fish vs bash. But, I Could not find any comparison for zsh vs fish. I program in c/c++, apart f …
2
votes
4answers
56 views
Redirect output to a bash array
I have a file containing the string
ipAddress=10.78.90.137;10.78.90.149
I'd like to place these two IP addresses in a bash array. To achieve that I tried the following:
n=$(gre …
0
votes
1answer
18 views
Startup time in Solaris server using shell script
How to find the start up time of a Solaris server using a shell script?
1
vote
3answers
43 views
Is it possible to have too many $PATHs set in OS X?
I've been learning about gems lately, and one error I get is:
WARNING: Installing to ~/.gem since /Library/Ruby/Gems/1.8 and
/usr/bin aren't both writable.
WARNING: You don't …
0
votes
3answers
87 views
unix find command
how to use the find command to find files/directories which are not matching the pattern.
for eg:
find <some options > -name "dontfile.txt"
should give me output of all th …
1
vote
4answers
59 views
Compare semicolon separated data in 2 files using shell script
I have some data (separated by semicolon) with close to 240 rows in a text file temp1.
temp2.txt stores 204 rows of data (separated by semicolon).
I want to:
Sort the data in bo …
3
votes
4answers
111 views
SQL*Plus inside Perl script
I am having a prior knowledge of shell scripting.
I am trying to connect to a table using SQL*Plus and fetch the data in a Perl script and store that output in a Perl variable.
Nor …
0
votes
1answer
21 views
Calling bash with PHP’s shell_exec — slow.
Hi,
I'm using PHP's shell_exec function to call a bash script on my server.
shell_exec("bash -x /tesladata/isetools/0-extractbytickerforweb.bash $ticker $isedate > /t24alv2/is …
2
votes
6answers
133 views
How to Safely Force Shutdown of Mac
What I want
I'm developing a little app to force me to only work at certain times of day - I need something to force me to stop working in the evenings so I can be more effective …
3
votes
2answers
64 views
How to input special character in cmd?
I have written a c program that retrieves arguments from the command line under Windows. One of the arguments is a regular expression. So I need to retrieve special characters such …
0
votes
3answers
50 views
Cakephp Shell Cronjob Controller Action Media Temple Server
Hi All,
I'm trying to create a cron job that will send a weekly newsletter. I tried creating a shell task following what Cakephp manual says. Then I go to the Media Temple Cron j …
