Search Results

Search: Posts Made By: inquirer
23,436
Posted By inquirer
i believe that this is a typo: name >...
i believe that this is a typo:


name > logfile.txt
password > logfile.txt


you meant:


echo $name > logfile.txt
echo $password > logfile.txt


what is wrong here is that the ">"...
151,279
Posted By inquirer
cut with the "-c" is only good if your data has...
cut with the "-c" is only good if your data has consistent length. otherwise, you will have problem in your future data.
151,279
Posted By inquirer
the real problem is that the spaces between the...
the real problem is that the spaces between the columns are not constant. without awk you will need to make a work around using cut and paste and sed. these 3 are available in UnixDos.

instead of...
50,745
Posted By inquirer
i believe that you cannot ftp a directory with...
i believe that you cannot ftp a directory with its content via normal ftp... there is a script created by a member here that can do that... try to use the search button.

hope this helps
3,192
Posted By inquirer
ifconfig | awk ' /flags/ { x = $1 ; next } /inet/...
ifconfig | awk ' /flags/ { x = $1 ; next } /inet/ { print x $2 }' :)
3,809
Posted By inquirer
echo "string1 string2 string3" | sed...
echo "string1 string2 string3" | sed "s/string[1-3]/newstring/g"
3,809
Posted By inquirer
echo "string1 string2 string3" | sed...
echo "string1 string2 string3" | sed "s/string[1-3]/newstring/g"
Forum: Solaris 03-07-2007
42,557
Posted By inquirer
just an update.... you can only increase the...
just an update....

you can only increase the file descriptor upto the maximum set in the /etc/system. to change it change the "rlim_fd_max" parameter to the desired value and reboot the server.
...
5,647
Posted By inquirer
if you have access to the remote user. then...
if you have access to the remote user. then generate the key yourself and copy it to your local server.
3,866
Posted By inquirer
use the -d option then just use awk or grep to...
use the -d option then just use awk or grep to get the value of the memory
Forum: Solaris 02-13-2007
42,557
Posted By inquirer
i need to change only a particular file.... ...
i need to change only a particular file....

example, scriptA has the following plimit <PID of scriptA>value:

current maximum
nofiles 30000 30000
...
Forum: Solaris 02-13-2007
42,557
Posted By inquirer
hmmm... the problem is that when i tried to check...
hmmm... the problem is that when i tried to check the other related settings like "plimit <PID>"

it tells me that it was already at its maximum value:

current maximum...
Forum: Solaris 02-13-2007
42,557
Posted By inquirer
dudes, i need this very urgent.... i...
dudes,

i need this very urgent....

i executed the command plimit <PID>... i was expecting an output either 256, 512, 1024, etc but instead the output was 30000.... this is different.

i am...
Forum: Solaris 02-12-2007
42,557
Posted By inquirer
ulimit command
Hi,

I have a Sun machine 5.8 and would like to modify the ulimit parameter for numner of file descriptors.

the output of plimit <process name> is:

4100: process_name
resource ...
5,314
Posted By inquirer
"-eq" is used to compare numbers. use "=" instead...
"-eq" is used to compare numbers. use "=" instead :D

hope this helps :cool:
Forum: Open Source 01-01-2007
335,851
Posted By inquirer
If you are a UNIX admin, vi is always a must. :D
If you are a UNIX admin, vi is always a must. :D
30,746
Posted By inquirer
sqlplus <user>/<password> <<eof select <column...
sqlplus <user>/<password> <<eof
select <column name> from <table>;
eof

there are other ways to do this. kindly use the search function first.

hope this helps.
4,401
Posted By inquirer
just include the oracle env to the cygwin so you...
just include the oracle env to the cygwin so you can have no problem with it :cool:
4,401
Posted By inquirer
cygwin is good. minimal installation. you can...
cygwin is good. minimal installation. you can practice scripting there.

www.cygwin.com

thanks
1,726
Posted By inquirer
if you are using basic commands of vi and vim...
if you are using basic commands of vi and vim there are almost no difference :cool:
19,520
Posted By inquirer
dude, why not just redirect the output to a...
dude,

why not just redirect the output to a file first so you can analyze what is wrong with the output. since from experience when you perform sqlplus there are some garbage which you do not...
1,715
Posted By inquirer
use double quotes (") instead of single quotes...
use double quotes (") instead of single quotes (')

hope this helps
1,461
Posted By inquirer
check the type of file: file dbrprofile.xx ...
check the type of file:

file dbrprofile.xx

if executable, check if there is an available man page.

man dbrprofile.xx

if the file is a script, just read what is inside the file.
4,295
Posted By inquirer
use "prompt" before issuing the "mput" command so...
use "prompt" before issuing the "mput" command so that you will no longer be asked for confirmation.

this should look like:

ftp> prompt
ftp> mput z*
ftp>bye

hope this helps :cool:
5,082
Posted By inquirer
echo Arun mv -f...
echo Arun
mv -f /export/VSNL_RECS_logs/MUM_ILD/strsp/reports.zip /test_script/test/
exit0
this part should be placed after the "END_SCRIPT" since you already exited from the ftp prompt.

it...
Showing results 1 to 25 of 79

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