Posts Topics Forums Images
Search videos from message boards Videos Search messages from microblogs Microblogs Search messages from imdb.com Imdb Search messages from yuku.com Yuku Search messages from lefora.com (free forums) Lefora
My account: Login | Sign Up
Loading... 

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.

Site: The UNIX Forums - the Top UNIX & Linux Q&A on the Web - UNIX for Dummies Questions & Answers (site profile, domain info unix.com)
Title: UNIX for Dummies Questions & Answers
Url: http://www.unix.com/unix-dummies-questions-answ...
Users activity: 26 posts per thread
Forum activity: 136 active threads during last week
 

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:

Posts by:  day  week  month 

Top authors during last week:

Name
Posts
Scrutinizer
23
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
jim mcnamara
16
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
scottn
15
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...
dennis.jacob
13
user's latest post:
How do i search for the contents...
Published (2009-11-26 14:41:00)
Try: Code: grep -f list1 <list2 >list3
thegeek
12
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...
mojoman
11
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?
fufaso
10
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...
temhem
10
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?
nirnir26
10
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?
f_o_555
9
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::

The UNIX Forums - the Top UNIX & Linux Q&A on the Web
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.
Thread:  Show this thread (2 posts)   Thread info: How to use  in linux Size: 676 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: How to use   in linux :: UNIX for Dummies Questions & Answers :: The UNIX Forums - the Top UNIX & Linux Q&A..."
The UNIX Forums - the Top UNIX & Linux Q&A on the Web
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
Thread:  Show this thread (3 posts)   Thread info: Is echo $variable >> text.txt working in MacOSX? Size: 1,255 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Is echo $variable >> text.txt working in MacOSX? :: UNIX for Dummies Questions & Answers :: The UNIX Forums - the Top UNIX & Linux Q&A..."
The UNIX Forums - the Top UNIX & Linux Q&A on the Web
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)}'
Thread:  Show this thread (3 posts)   Thread info: Creating list of files in directory Size: 415 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Creating list of files in directory :: UNIX for Dummies Questions & Answers :: The UNIX Forums - the Top UNIX & Linux Q&A..."
The UNIX Forums - the Top UNIX & Linux Q&A on the Web
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
Thread:  Show this thread (2 posts)   Thread info: How to outfile contant as an input for a command Size: 484 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: How to outfile contant as an input for a command :: UNIX for Dummies Questions & Answers :: The UNIX Forums - the Top UNIX & Linux Q&A..."
The UNIX Forums - the Top UNIX & Linux Q&A on the Web
Started 1 day, 10 hours ago (2009-11-26 15:40:00)  by pludi
Double post, continued here
Thread:  Show this thread (2 posts)   Thread info: Windows CSV file to unix csvfile Size: 230 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Windows CSV file to unix csvfile :: UNIX for Dummies Questions & Answers :: The UNIX Forums - the Top UNIX & Linux Q&A..."
The UNIX Forums - the Top UNIX & Linux Q&A on the Web
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?
Thread:  Show this thread (2 posts)   Thread info: Copy a windows CVS file to the unix server as a svs file Size: 237 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Copy a windows CVS file to the unix server as a svs file :: UNIX for Dummies Questions & Answers :: The UNIX Forums - the Top UNIX & Linux Q&A..."
The UNIX Forums - the Top UNIX & Linux Q&A on the Web
Started 1 day, 10 hours ago (2009-11-26 15:41:00)  by pludi
Double post, continued here
Thread:  Show this thread (2 posts)   Thread info: Copy a windows CVS file to the unix server Size: 230 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Copy a windows CVS file to the unix server :: UNIX for Dummies Questions & Answers :: The UNIX Forums - the Top UNIX & Linux Q&A..."
The UNIX Forums - the Top UNIX & Linux Q&A on the Web
Started 1 day, 11 hours ago (2009-11-26 14:41:00)  by dennis.jacob
Try: Code: grep -f list1 <list2 >list3
Thread:  Show this thread (3 posts)   Thread info: How do i search for the contents of list1 in list2? Size: 382 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: How do i search for the contents of list1 in list2? :: UNIX for Dummies Questions & Answers :: The UNIX Forums - the Top UNIX & Linux Q&A..."
 

Hot threads for last week on UNIX for Dummies Questions & Answers::

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 ...
Thread:  Show this thread (15 posts)   Thread info: without password via rsa algorithm problem Size: 1,986 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: without password via rsa algorithm problem :: UNIX for Dummies Questions & Answers :: The UNIX Forums - the Top UNIX & Linux Q&A..."
UNIX for Dummies Questions & Answers
Started 5 days, 13 hours ago (2009-11-22 12:46:00)  by Scrutinizer
Code: if [ "$NAME" = "" ]
Thread:  Show this thread (14 posts)   Thread info: Validating user input Size: 368 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Validating user input :: UNIX for Dummies Questions & Answers :: The UNIX Forums - the Top UNIX & Linux Q&A..."
UNIX for Dummies Questions & Answers
Started 4 days, 16 hours ago (2009-11-23 09:46:00)  by dennis.jacob
Try: Code: awk '/XXXX/ && /222/' < filename
Thread:  Show this thread (13 posts)   Thread info: occurrence of two strings in a line of a file Size: 384 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: occurrence of two strings in a line of a file :: UNIX for Dummies Questions & Answers :: The UNIX Forums - the Top UNIX & Linux Q&A..."
UNIX for Dummies Questions & Answers
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...
Thread:  Show this thread (9 posts)   Thread info: creating an file the count how many files in the directory Size: 2,442 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: creating an file the count how many files in the directory :: UNIX for Dummies Questions & Answers :: The UNIX Forums - the Top UNIX & Linux Q&A..."
UNIX for Dummies Questions & Answers
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?
Thread:  Show this thread (9 posts)   Thread info: Redirect stdin stdout to multiple files Size: 435 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Redirect stdin stdout to multiple files :: UNIX for Dummies Questions & Answers :: The UNIX Forums - the Top UNIX & Linux Q&A..."
UNIX for Dummies Questions & Answers
Started 3 days, 2 hours ago (2009-11-24 23:32:00)  by radoulov
Code: awk '/IFRAME/{exit}_;/Personal Planning/{_++}' infile
Thread:  Show this thread (9 posts)   Thread info: Lynx Grep Pattern Match 2 conditions Print from Start to End Size: 382 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Lynx Grep Pattern Match 2 conditions Print from Start to End :: UNIX for Dummies Questions & Answers :: The UNIX Forums - the Top UNIX & Linux Q&A..."
UNIX for Dummies Questions & Answers
RE: ls...without ls? - 9 new posts
Started 5 days, 13 hours ago (2009-11-22 12:47:00)  by ghostdog74
try echo *
Thread:  Show this thread (9 posts)   Thread info: ls...without ls? Size: 74 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: ls...without ls? :: UNIX for Dummies Questions & Answers :: The UNIX Forums - the Top UNIX & Linux Q&A..."
UNIX for Dummies Questions & Answers
Started 4 days, 2 hours ago (2009-11-23 23:31:00)  by wwwzviadi
try this Code: who -a
Thread:  Show this thread (8 posts)   Thread info: identify a customer under a UNIX server Size: 353 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: identify a customer under a UNIX server :: UNIX for Dummies Questions & Answers :: The UNIX Forums - the Top UNIX & Linux Q&A..."
UNIX for Dummies Questions & Answers
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 $...
Thread:  Show this thread (8 posts)   Thread info: Help Passing An Oracle parameter to a unix shell. Size: 1,313 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Help Passing An Oracle parameter to a unix shell. :: UNIX for Dummies Questions & Answers :: The UNIX Forums - the Top UNIX & Linux Q&A..."
UNIX for Dummies Questions & Answers
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
Thread:  Show this thread (7 posts)   Thread info: (/var/log/messages) issue Size: 138 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: (/var/log/messages) issue :: UNIX for Dummies Questions & Answers :: The UNIX Forums - the Top UNIX & Linux Q&A..."