Help about comment verification


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Help about comment verification
# 1  
Old 01-28-2014
Help about comment verification

Hello,

I have a file, in which line 40 is commented. It is basically a cron job,

Code:
#05,35,50 * * * * /usr/local/scripts/my.sh

how i can i verify the line 40 is commented, if not then give me message not commented, otherwise provide us message it is commented.
# 2  
Old 01-28-2014
Code:
if [ $(sed -n '40p' filename.txt | cut -c1) = '#' ]
then
    echo "commented"
else
    echo "not commented"
fi

# 3  
Old 01-28-2014
I am using AIX
# 4  
Old 01-28-2014
Output the line and check that the first non space character is a hash, something like...
Code:
crontab -l |head -40 | tail -1 |egrep '^\s*#' || echo line 40 is not commented out

# 5  
Old 01-28-2014
Quote:
Originally Posted by balajesuri
Code:
if [ $(sed -n '40p' filename.txt | cut -c1) = '#' ]
then
    echo "commented"
else
    echo "not commented"
fi

If it is not commented then how we can check?

line is like that

Code:
05,35,50 * * * * /usr/local/scripts/my.sh

# 6  
Old 01-28-2014
If you want to check the status for some particular script, its not a good idea to rely on the line_no. It can change anytime if someone add another script/comment/newline before that script.
You can search with the /path/to/script.sh

something like

Code:
crontab -l | grep -Eq '^#.*/path/to/script.sh'
status=$?

if [ $status -eq 0 ]; then
 #stopped
else
 #active
fi


Modify the pattern accordingly if you expect spaces before the "#" as in other post.

Last edited by clx; 01-28-2014 at 05:48 AM..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Forum Support Area for Unregistered Users & Account Problems

Can't get past google verification

Trying to register the Verification step is blocking me. I've allowed all the intrusive Google trackers and Java. Tried different browsers with no blocking. Nothing is working. Says: "Try again later Your computer maybe ... " What weird is in this forum section I can pass the recaptcha but in... (1 Reply)
Discussion started by: Unregistered
1 Replies

2. Programming

ECDSA verification

Using ECDSA, how do you verify integrity of Data (D), Given the value for the following: Random number (r) Signature (s) ECpublic Key (K) Thanks. (0 Replies)
Discussion started by: dragonpoint
0 Replies

3. Solaris

Server login verification

Hi , How to ensure the server i logged in OS cluster ? Is there any command to verify that ? Regards, maddy (5 Replies)
Discussion started by: Maddy123
5 Replies

4. Shell Programming and Scripting

Field verification script help

Hello again unix.com I need some help regarding a script. I have: function checkform ( form ) { if (form.pass.value.length < 6) { alert( "Error." ); form.pass.focus(); document.getElementById('pass').style.backgroundColor="#FFFFFF"; return... (2 Replies)
Discussion started by: galford
2 Replies

5. Shell Programming and Scripting

Script Verification

Hi eveyone I am planning to use crontab to delete all files in my donwloads directory that are older than one hour I will be using crontab to run this script find /home/kee/downloads/* -daystart -mmin +59 -type f -name -exec rm -r {}\; could you please let me know if the above... (1 Reply)
Discussion started by: k33k00
1 Replies

6. AIX

HACMP verification

Hi, every midnight hacmp verification is run automatically. clverify.log says there is no erro bu clutils.log says there is 1 error but when i look at the clverify.log no problem at all. Below is the output of the clverify.log what may be the cause of the error in the clutils.log file. Thanks,... (1 Reply)
Discussion started by: mmersoylu
1 Replies

7. Programming

htable + verification

hello every body, I have to verifiy if the param_key is selectionned twice or more and to print only one occurence i'm using htable what's the good implementation to add to the code to verify this. code : { char *tmpStr = NULL; ght_iterator_t iterator_param; void... (0 Replies)
Discussion started by: kamel.seg
0 Replies

8. UNIX for Dummies Questions & Answers

Signiture verification failed

Hello, I am new to Solaris. I've installed Solaris 10.0 and trying to apply all patches. On Java Desktop, I've applied almost all patches but some of patches should be applied manually on the command line. The patches -should be applied manually on terminal- are downloaded by Sun Update... (1 Reply)
Discussion started by: XNOR
1 Replies

9. Shell Programming and Scripting

SSH login verification

I need to write a script that check users authenting to a particular server ssh -l if sucessfull echo loggin sucess else echo login invalid Any Suggestions ? (4 Replies)
Discussion started by: sriram003
4 Replies

10. UNIX for Dummies Questions & Answers

verification?

I'm really new at this and wondering how I would go about adding code to my script to verify that all records loaded successfully? (I am loading a file into a table) i'm using the Korn shell. I'm also having trouble verifying parts in the header as i do not really understand the header and... (3 Replies)
Discussion started by: sheranjem
3 Replies
Login or Register to Ask a Question