Search Results

Search: Posts Made By: frank_rizzo
1,273
Posted By frank_rizzo
Attach the binary file using the -a option. ...
Attach the binary file using the -a option.
-a file
Attach the given file to the message.
3,182
Posted By frank_rizzo
A minor tip - remove the useless use of cat ...
A minor tip - remove the useless use of cat

change
cat "$BODY_FILE" | mail -s "$SUBJECT" -a "$ATTACHMENT_FILE" "$CC_LIST"

to
mail -s "$SUBJECT" -a "$ATTACHMENT_FILE" "$CC_LIST" < $BODY_FILE
3,392
Posted By frank_rizzo
They are the same system call per the man page...
They are the same system call per the man page except the getipnodeby* functions support IPv6 and IPv4.

The getipnodebyname() and getipnodebyaddr() functions return the names
and...
1,791
Posted By frank_rizzo
Yes. Use something like the curl(1)...
Yes. Use something like the curl(1) (https://www.unix.com/man-page/all/1/curl) command.
35,134
Posted By frank_rizzo
please post the output of grep passwd...
please post the output of

grep passwd /etc/nsswitch.conf

my guess is LDAP.
10,031
Posted By frank_rizzo
use the -exec option to find. find . -type f...
use the -exec option to find.

find . -type f -name "VPN_CALLRECORD_20130422*" -exec cp -v "{}" /home/sysadm/patrick_temp/ \;
Forum: Solaris 03-02-2013
2,536
Posted By frank_rizzo
check the docs on lom. the hostname cannot be set...
check the docs on lom. the hostname cannot be set by the set command.

There are some variables that you can use as arguments to the set command in the
LOMlite2 shell. The set command duplicates...
2,269
Posted By frank_rizzo
try this. env LC_ALL=C sort...
try this.

env LC_ALL=C sort /path/to/you.file


from the sort docs
---------- Footnotes ----------

(1) If you use a non-POSIX locale (e.g., by setting `LC_ALL' to
`en_US'), then...
6,681
Posted By frank_rizzo
search for MAME
search for MAME
Forum: Cybersecurity 01-18-2012
12,853
Posted By frank_rizzo
i suggest writing wrapper scripts and limit what...
i suggest writing wrapper scripts and limit what the user can supply. be very careful and sanitize all parameters.
1,432
Posted By frank_rizzo
try using this ssh option. -o...
try using this ssh option. -o StrictHostKeyChecking=no
Forum: Hardware 09-15-2012
2,821
Posted By frank_rizzo
I have one of those myself. I believe you need...
I have one of those myself. I believe you need the SCA interface.

Check out the Doc. Sun_StorEdge_MultiPack_Users_Guide.pdf...
923
Posted By frank_rizzo
add the -i option for case insensitive. or change...
add the -i option for case insensitive. or change the pattern [Hh].
1,361
Posted By frank_rizzo
Don't use 777. 755 should be sufficent. ...
Don't use 777. 755 should be sufficent.

also check More Enhancements in Java SE 6 (http://java.sun.com/developer/technicalArticles/J2SE/Desktop/javase6/enhancements/)
10,061
Posted By frank_rizzo
does this work for you? ./keytool -list -v...
does this work for you?

./keytool -list -v -keystore /home1/server.jceks -storetype JCEKS<<EOF
password-here
EOF
Forum: AIX 03-19-2012
3,795
Posted By frank_rizzo
entstat -d entX or netstat -D don't forget...
entstat -d entX or netstat -D

don't forget about man pages. man netstat
2,007
Posted By frank_rizzo
check Wget GNU Wget...
check Wget GNU Wget (http://www.gnu.org/software/wget/) or cURL cURL and libcurl (http://curl.haxx.se/).
10,415
Posted By frank_rizzo
#!/usr/bin/perl $|++; #set STDOUT unbuffered;...
#!/usr/bin/perl
$|++; #set STDOUT unbuffered; use with caution
print "check 1";
print "check 2";
sleep 5;
2,031
Posted By frank_rizzo
kernel.org
kernel.org
Forum: IP Networking 01-18-2012
9,946
Posted By frank_rizzo
Do you have lsof installed? If so run lsof -i or...
Do you have lsof installed? If so run lsof -i or lsof -p <pid>
14,020
Posted By frank_rizzo
you need to configure yum to search the EPEL...
you need to configure yum to search the EPEL repo.

AdditionalResources/Repositories - CentOS Wiki (http://wiki.centos.org/AdditionalResources/Repositories)
5,089
Posted By frank_rizzo
treat all commands as dangerous. if they are...
treat all commands as dangerous. if they are allowed to run arbitrary scripts as root you might as well give them root.
4,591
Posted By frank_rizzo
please use CODE tags around your logic. ...
please use CODE tags around your logic.

i=$((i+1))
or
let i=i+1
814
Posted By frank_rizzo
is this what you mean? while read i do ...
is this what you mean?

while read i
do
echo $i
done<data
14,390
Posted By frank_rizzo
man grep simple example grep foo...
man grep

simple example

grep foo bar.txt | less
Showing results 1 to 25 of 89

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