Search Results

Search: Posts Made By: igorc
14,011
Posted By igorc
Then you have put the script in a wrong directory...
Then you have put the script in a wrong directory or the handler for that directory has not been sat properly for cgi-script. Who ever is the admin on the box should fix this and tell you what do. If...
14,011
Posted By igorc
Put this line in the script use CGI;
Put this line in the script

use CGI;
13,065
Posted By igorc
Have a look at this code snippet from one of my...
Have a look at this code snippet from one of my scripts doing automating SFTP:

/usr/bin/expect <<EOF
spawn /usr/bin/sftp USERNAME@SERVER_IP
expect {
"Password: " {
...
8,000
Posted By igorc
Looks like connection error to me. What database...
Looks like connection error to me. What database are you connecting to? And is it local or remote? Check the max number of the allowed connections on the database listener you might be exceeding it...
12,678
Posted By igorc
Try with awk: cat -n test.log | awk...
Try with awk:

cat -n test.log | awk '{if((NR>122)&&(NR<128)) print}'

for a test to see if it is working (this should print the lines from number 123 to 127. Then you can remove 'cat' and the...
1,707
Posted By igorc
On Unix (Solaris) /usr/sbin/psrinfo -pv
On Unix (Solaris)

/usr/sbin/psrinfo -pv
6,684
Posted By igorc
This should work: a="testing"; len=${#a};...
This should work:

a="testing"; len=${#a}; echo $a | cut -c3-$len
Showing results 1 to 7 of 7

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