|
More site info...
UNIX for Dummies Questions & Answers | Forum profile
|
|
Forum profile page for UNIX for Dummies Questions & Answers on http://www.unix.com.
This report page is the aggregated overview from a single forum: UNIX for Dummies Questions & Answers, located on the Message Board at http://www.unix.com.
This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional forum profile information for "UNIX for Dummies Questions & Answers" on the Message Board at http://www.unix.com is also shown in the following ways:
1) Latest Active Threads
2) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity on UNIX for Dummies Questions & Answers:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
136
|
440
|
1,175
|
|
Post:
|
370
|
1,114
|
3,077
|
|
|
UNIX for Dummies Questions & Answers Posting activity graph:
|
Top authors during last week:
user's latest post:
Redirect stdin stdout to...
Published (2009-11-26 05:41:00)
In both ksh and bash: Code: set -o pipefail s1.sh 2>&1 | tee log1.txt > log2.txt echo $? set +o pipefail
user's latest post:
Solaris 10 question on...
Published (2009-11-25 15:26:00)
operator== A message is sent to the user on the console. This looks like the default Sun /etc/syslog.conf setting. Consider changing operator to root,operator,< username you are usually logged on as, hopefully not root> Another suggestion - the syslog.conf defaults are not generally the best possible. Consider reading up on this at maybe a starter site: Syslog Configuration Examples
user's latest post:
Having problem with if statement
Published (2009-11-22 12:48:00)
Use spaces before and after the [ and ] characters Code: website="" echo "Would you like to enter a website? Enter Yes/No" read choice if [ "$choice" == "Yes" ] then while [ "$website" == "" ] do echo "Please enter a website:"; read website; done else website="None" fi And you don't need == when...
user's latest post:
ls...without ls?
Published (2009-11-22 22:47:00)
if you want to see ls output without executing ls ... and permissions also., try stat. stat -c '%A %n' * Code: $ stat -c '%A %n' * drwx------ atop.d drwx------ keyring-BqEeA5 drwx------ orbit-gdm drwx------ orbit-sathiya drwx------ pulse-PKdhtXMmr18n drwx------ pulse-TOfOFmY3lXDd srwxr-xr-x scim-bridge-0.3.0.socket-1000@localhost:0.0 srw------- scim-helper-manager-socket-sathiya srw------- scim-panel-socket:0-sathiya...
user's latest post:
Why do I have two links in my...
Published (2009-11-26 05:41:00)
Hi, I am doing a services audit on one of our servers at work and I notice that I sometimes have a service with two slightly different prefixes. For example, S94httpd K15httpd Can one of them be safely deleted?
user's latest post:
Validating user input
Published (2009-11-23 23:33:00)
This is what I've got with the code you showed me, and it's catching numbers, but it's also catching letters and there is an endless loop of re-entering the name regardless of what is inputted. Code: while : do echo "Please enter your name." read NAME if [ "$NAME" = "" ] || [ "{$NAME//[!0-9]}" != "" ]; then echo "You have not...
user's latest post:
Without password via RSA...
Published (2009-11-25 15:25:00)
same things. are there any way log in to one server from another server without password?
user's latest post:
Get directory address
Published (2009-11-24 23:33:00)
what is the command that print the full address of the directory that im in it?
user's latest post:
Occurrence of two strings in a...
Published (2009-11-24 23:33:00)
Quote: Originally Posted by daPeach Code: grep -Ei ^X{4}.*2{3}$ your_file How can I put in two arbitrary strings $STRING1 and $STRING2? grep -Ei $STRING1.$STRING2 doesn't work
|
|
|
|
Latest active threads on UNIX for Dummies Questions & Answers::
Started 20 hours, 38 minutes ago (2009-11-27 05:30:00)
by thegeek
when you execute "who am i" in a batch process, you are getting nothing.,
try executing some other, and specify absolute path of it, you are likely to get output.
Code:
* * * * * /bin/ls >> ~/my.txt
sadly, the first job you tried itself is giving you trouble, but anyway thats how we learnt unix, enjoy here.
Started 20 hours, 51 minutes ago (2009-11-27 05:17:00)
by Neo
Quote:
Originally Posted by jackt
Is echo $variable >> text.txt working in MacOSX?
Yes, it works fine, but <TIME> is not supported, I don't think. Try date instead.
Code:
newdate=$(date)
echo $newdate >> /Users/ttadmin/Desktop/test.txt
Started 21 hours, 28 minutes ago (2009-11-27 04:40:00)
by Franklin52
Something like this?
Code:
ls | awk '{printf("%s_%03s",$0, ++i)}'
Started 23 hours, 28 minutes ago (2009-11-27 02:40:00)
by dennis.jacob
Something like this...
Code:
while read j
do
r=`/omp/bin/ICIC "pp:call $j, cdd 2,ccc 1"|grep -w "BU"|wc -l`
.....
done <file
Started 1 day, 10 hours ago (2009-11-26 15:40:00)
by pludi
Double post, continued here
Started 1 day, 10 hours ago (2009-11-26 15:40:00)
by pludi
scp via Putty? Samba on the UNIX server (which UNIX by the way?) or a Windows share mounted via CIFS? An FTP server on any of the two, or an HTTP server on the Windows side?
Started 1 day, 10 hours ago (2009-11-26 15:41:00)
by pludi
Double post, continued here
Started 1 day, 11 hours ago (2009-11-26 14:41:00)
by dennis.jacob
Try:
Code:
grep -f list1 <list2 >list3
|
|
Hot threads for last week on UNIX for Dummies Questions & Answers::
Started 4 days, 22 hours ago (2009-11-23 03:47:00)
by dennis.jacob
Quote:
Originally Posted by temhem
hi All,
i need to connect(sftp) from serverA to serverB via rsa algorithm. But i can not success this.
i did like that:
On ServerA:
#ssh-keygen -t rsa
after running this command, "id_rsa" and "id_rsa.pub" files were generated. i checked.there is private key in id_rsa ...
Started 5 days, 13 hours ago (2009-11-22 12:46:00)
by Scrutinizer
Code:
if [ "$NAME" = "" ]
Started 4 days, 16 hours ago (2009-11-23 09:46:00)
by dennis.jacob
Try:
Code:
awk '/XXXX/ && /222/' < filename
Started 5 days, 17 hours ago (2009-11-22 08:29:00)
by thegeek
Quote:
Originally Posted by AntiPin
Code:
find . -type f | wc -l > 1In1.myfile
the problem with this command is that it not update after i add a new file in the directory.
Yes, after adding a new file, how you are expecting it to update the count ? -- you run it once and redirecting it, thats all...
Started 1 day, 20 hours ago (2009-11-26 05:41:00)
by jim mcnamara
Code:
myscript.sh | tee outputfile1 1> outputfile2
you get two identical output files - is that what you mean?
Started 3 days, 2 hours ago (2009-11-24 23:32:00)
by radoulov
Code:
awk '/IFRAME/{exit}_;/Personal Planning/{_++}' infile
Started 5 days, 13 hours ago (2009-11-22 12:47:00)
by ghostdog74
Started 4 days, 2 hours ago (2009-11-23 23:31:00)
by wwwzviadi
Started 1 day, 20 hours ago (2009-11-26 05:41:00)
by Mark_Wright
I have an Oracle concurrent program that I'm passing a parameter to a unix shell script. An example value of the Oracle parameter is PO_TOP. The Oracle parameter represents the unix env var PO_TOP, meaning, on the unix side there is env var called PO_TOP (ex value: /oradev/apps/po/11.0.3/). My goal is to passed the Oracle parameter to the unix script and have it behave like the unix env var $...
Started 6 days, 16 hours ago (2009-11-21 09:31:00)
by Arunprasad
try ping this peer "205.111.86.22" and check whether it is alive
|
|