Search Results

Search: Posts Made By: frank_rizzo
1,289
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,205
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,397
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,818
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,164
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,066
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,557
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,278
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,708
Posted By frank_rizzo
search for MAME
search for MAME
Forum: Cybersecurity 01-18-2012
12,905
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,445
Posted By frank_rizzo
try using this ssh option. -o...
try using this ssh option. -o StrictHostKeyChecking=no
Forum: Hardware 09-15-2012
2,833
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...
927
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,366
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,106
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,816
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,012
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,427
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,041
Posted By frank_rizzo
kernel.org
kernel.org
Forum: IP Networking 01-18-2012
9,971
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,029
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,101
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,598
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
817
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,423
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 08:50 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy