Search Results

Search: Posts Made By: aniseed
1,924
Posted By aniseed
exec replaces the shell with the command you use...
exec replaces the shell with the command you use auto_inv.4ge. That command obviously does not understand sed.

In my understanding, exec is typically used to replace one shell with another....
Forum: Open Source 03-26-2008
344,311
Posted By aniseed
I've been quite used to vi now. It may not be the...
I've been quite used to vi now. It may not be the best for writing a neatly formatted code but there are a lot of things I could do quicker than any other editor.
1,824
Posted By aniseed
I'm not sure what you mean - or what your...
I'm not sure what you mean - or what your instructor means. I don't see any place where it is taking a single input. And I don't know what he means by making it take three. You might post what that...
2,452
Posted By aniseed
http://www.computerhope.com/unix/usendmai.htm ...
http://www.computerhope.com/unix/usendmai.htm
Take a look at the -N option.
184,111
Posted By aniseed
ksh++; I use csh too but I find it a little...
ksh++;

I use csh too but I find it a little clumsy.
29,034
Posted By aniseed
As much as I know, ps -f will give you a column...
As much as I know, ps -f will give you a column called STIME which indicates the start time.
8,743
Posted By aniseed
You could use functions in a shell script. I have...
You could use functions in a shell script. I have a script where one function does the FTP and the rest is taken care by other functions. I suppose the same would work for you too.
10,204
Posted By aniseed
Running at specified times can be done using...
Running at specified times can be done using cron. You need to configure the crontab for that.
3,369
Posted By aniseed
You need to have this like s/\\307/,/
You need to have this like s/\\307/,/
2,204
Posted By aniseed
Script to send mail...
Script to send mail (http://www.sap-basis-abap.com/unix/script-that-sends-a-file-via-mailx.htm)

Your problem lies here
/usr/bin/mailx -s $MESG_DELAY here@there.com

You could check the link.
2,369
Posted By aniseed
If it is very urgent, you should try a Google...
If it is very urgent, you should try a Google search too.
http://www.npl.washington.edu/faq/unix-FAQ-2-6.html
3,704
Posted By aniseed
A simple way is to execute the command in a while...
A simple way is to execute the command in a while loop from a script and sleep for one hour (3600 seconds).

#!/usr/bin/ksh
while true
do
echo "dis chs(*)" | runmqsc | grep RUNNING | wc -l
#...
18,043
Posted By aniseed
Additionally, you could check this link for Korn...
Additionally, you could check this link for Korn shells specifically.
http://www.unix.org.ua/orelly/unix/ksh/
43,003
Posted By aniseed
If you are converting minutes to hh:mm:ss,...
If you are converting minutes to hh:mm:ss, seconds will always be 00. Hours can be obtained as (input minutes/60) and the minutes can be calculated with (input minutes - hours*60)


#!/usr/bin/ksh...
18,043
Posted By aniseed
This page has several links to good sites. ...
This page has several links to good sites.
http://stommel.tamu.edu/~baum/programming.html
6,860
Posted By aniseed
1) su allows interaction only through the...
1) su allows interaction only through the console, probably for security reasons. You might try using supassword | su loginname but I doubt if it will work correctly. Alternatively, you could try...
Forum: HP-UX 12-08-2005
12,412
Posted By aniseed
In your ODBC ini, try setting the path to...
In your ODBC ini, try setting the path to "/usr/lib/libmyodbc3-3.51.06.sl" rather than "/usr/local/lib/libmyodbc3.sl".

Also, shouldn't your thread be posted in the HP-UX forum rather than here?
2,328
Posted By aniseed
Thank you. :)
Thank you. :)
Forum: HP-UX 12-06-2005
12,412
Posted By aniseed
As an addition, check if you have the library...
As an addition, check if you have the library object reference for your database in LD_LIBRARY_PATH
Forum: HP-UX 12-06-2005
12,412
Posted By aniseed
Permissions are not the problem in this case...
Permissions are not the problem in this case since you are having read, write and execute for all users. I suspect it might have some problem with the installation.

On an unrelated note, I have...
2,328
Posted By aniseed
Signature???
In the user control panel, I noticed an option to enable viewing signatures. But somehow, I could not find any place to set my own signature. :( :confused:

Could anyone tell me where I can...
3,151
Posted By aniseed
Any specific books that would be worth playing? :)
Any specific books that would be worth playing? :)
Showing results 1 to 22 of 22

 
All times are GMT -4. The time now is 10:36 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy