Search Results

Search: Posts Made By: rafa_fed2
2,656
Posted By Paarth
ok then try this echo '12#abcd!@' | sed...
ok then try this
echo '12#abcd!@' | sed 's/[^a-zA-Z]*//g'
2,656
Posted By SriniShoo
echo "312jjs33" | tr -d '[0-9]'
echo "312jjs33" | tr -d '[0-9]'
2,656
Posted By anbu23
echo abcd123 | tr -d '0-9'
echo abcd123 | tr -d '0-9'
1,656
Posted By Lucas_0418
Hi Akshay, In s/\$/RS/gg means global...
Hi Akshay,
In s/\$/RS/gg means global substitution. and 's' is the command.

And this is when g is a command.
g Copy/append hold space to pattern space



Sorry guy, see you have...
1,656
Posted By Akshay Hegde
[/QUOTE] Substitutes new value RS to all...
[/QUOTE]

Substitutes new value RS to all occurrences of the $, where \ is escape character.
1,656
Posted By Lucas_0418
Hi guy, $ is an anchor point to the end of a...
Hi guy,
$ is an anchor point to the end of a line in regular expression
Use \$
965
Posted By anbu23
find / -name "*.sh" -exec grep -li...
find / -name "*.sh" -exec grep -li "text_to_search" '{}' \; 2>/dev/null
965
Posted By anbu23
find / -name "b.sh" 2>/dev/null
find / -name "b.sh" 2>/dev/null
3,027
Posted By Akshay Hegde
Some other name ? OR try like this with...
Some other name ?

OR try like this with semicolon
( cat -; uuencode /arbor/fx1/rraj/s1.csv; uuencode /arbor/fx1/rraj/s2.csv ) | mailx -s "Activity Log" abc@xyz.com
3,027
Posted By Akshay Hegde
On terminal cat >msg<<EOF your msg EOF ...
On terminal

cat >msg<<EOF
your msg
EOF


(cat msg; uuencode path/to/your/attachement/file) | mailx -s "Your Subject" abc@xyz.com

OR

cat <<EOF | ( cat -; uuencode ...
7,325
Posted By rbatte1
Is this within a script or on the command line? ...
Is this within a script or on the command line? Within a script, you would need to open the here document to end it with EOT like this:-mailx -s hello rraj@<youremailserver> <<-EOT
ddf
dfsfgfdg...
9,435
Posted By ahamed101
Did you check the LB_LIBRARY_PATH in the QA env? ...
Did you check the LB_LIBRARY_PATH in the QA env?
Is the lib librc.so present in the standard library paths?

I am assuming the script bip.sh is calling the binary BIP?

--ahamed
5,387
Posted By smoofy
Try: find / -name "*.sh" -exec grep -li...
Try:
find / -name "*.sh" -exec grep -li "text_to_search" '{}' \; 2>/dev/null
5,387
Posted By smoofy
It works with -iname as well, try: find /...
It works with -iname as well, try:

find / -name "*.sh" -exec grep -li "text_to_search" '{}' \; as I said before, -iname option makes find to search for case insensitive...
5,387
Posted By smoofy
I downloaded and installed solaris. And it...
I downloaded and installed solaris.
And it works :D
5,387
Posted By smoofy
your grep does not know option -H so use -l. Stat...
your grep does not know option -H so use -l. Stat error is given because of the incorect user permissions.
3,331
Posted By rbatte1
The account running the database (sounds like...
The account running the database (sounds like oracle for you) needs unix permissions to write to the unix directory in question. Within the database your account (seems like usr_1) would need to...
3,331
Posted By ahamed101
You need to identify the user running the Oracle...
You need to identify the user running the Oracle Server and give that user the required permissions in the directory.

--ahamed
2,516
Posted By MadeInGermany
Typical permissions are 700 read/execute/write...
Typical permissions are
700 read/execute/write permission for the file's owner, ls -l shows rwx------
750 ... plus read/execute for the file's group, ls -l shows rwxr-x---
755 ... plus...
2,144
Posted By Scott
Using the find...
Using the find (https://www.unix.com/man-page/opensolaris/1/find/) command.
1,276
Posted By Subbeh
The syntax is <minute> <hour> <day> <month> <day...
The syntax is <minute> <hour> <day> <month> <day of week> <command>. 30 is not a valid hour in this case
1,320
Posted By krishmaths
$* gives you the parameter list passed to the...
$* gives you the parameter list passed to the script
$0 - current script name
$n - nth argument passed
$$ - process id
$! - process id of last invoked background process
1,675
Posted By zaxxon
$ man test ... -z STRING ...
$ man test
...
-z STRING
the length of STRING is zero
...
5,826
Posted By Scott
Talk to whoever wrote bip.sh and ask them where...
Talk to whoever wrote bip.sh and ask them where the file is... or how it came to be.
3,677
Posted By vidyadhar85
try to put the full path here ...
try to put the full path here

LOG_FILE=/arbor/integ_fx/rahul_raj/itsr_5652/error.log
Showing results 1 to 25 of 33

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