LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 02-19-2009, 01:50 PM   #1
odimachkie
LQ Newbie
 
Registered: Feb 2009
Posts: 19

Rep: Reputation: 0
bash -x / trace / sdout


i've been going through some tutorials and one of the suggestions was to use the following at the beginning of your script to trace/debug:
Code:
#!/bin/bash -x
im not sure what exactly the desired effect is, but im pretty sure im not getting it. all im getting is what i would normally get if i ran
Code:
bash myscript.sh
i am new at this so i could be overlooking something simple, and it probably doesn't help that im not really sure what exactly this code:
Code:
#!/bin/bash
is doing...is it not commented out?

any feedback would help, thanks.
 
Old 02-19-2009, 02:30 PM   #2
armandrix
Member
 
Registered: Nov 2005
Location: Brazil
Distribution: slackware64 -current
Posts: 46

Rep: Reputation: 18
Hi

The "#!"sign in the first line first character in a file is a special character, wich is intended to give shell tips about the archive.

When you put "#! /bin/bash" you are telling shell to execute this file with bash, wich is a shell of coarse, or virtual shell wich mimics shell in graphical environ.

"#! /usr/bin/env bash" do the same but thru env utility.

Scripting file cannot have those lines, but it can cause troubles or unexpected behavior in certain cases.

In python scripting one can put "#! /usr/bin/env python" so the shell won't try to execute this file sending it for python interpreter.

The option -x in this case make bash more verbose, printing aliases and many stuffs in the prompt.

Hope it helps
 
Old 02-19-2009, 02:58 PM   #3
odimachkie
LQ Newbie
 
Registered: Feb 2009
Posts: 19

Original Poster
Rep: Reputation: 0
That does help with the #! issue, i assumed something like that, but i wasnt sure.
but my -x issue is still there, maybe it would help if copied the script im trying to run.


Code:
#!/bin/bash -x

echo -n "Enter some text > "
if read -st 2; 
then
  echo "Your wrote: $REPLY"
else
  echo "To slow suckah"
fi

the script works. but as far as i know, using the -x should trace through the script, which is not what im getting when i run the script.
ive tried using -x on other more complicated scripts and still, i can detect no change in the operation.

im running debian if that has anything to do with anything.
 
Old 02-19-2009, 08:02 PM   #4
ArfaSmif
Member
 
Registered: Oct 2008
Location: Brisbane Australia
Distribution: Fedora, Centos, Manjaro
Posts: 317

Rep: Reputation: 70
All I've ever done is use "set -x" after the #!/bin/bash first line. That will display everything as it is being processed. For example :-

#!/bin/bash

set -x

echo -n "Enter some text > "
if read -st 2;
then
echo "Your wrote: $REPLY"
else
echo "Too slow suckah"
fi
 
Old 02-19-2009, 10:28 PM   #5
armandrix
Member
 
Registered: Nov 2005
Location: Brazil
Distribution: slackware64 -current
Posts: 46

Rep: Reputation: 18
Hi odimachkie

About -x in your script, traces its exec steps if you want some more advanced debugging try strace, ltrace or other tools.

cheers
 
Old 02-19-2009, 11:02 PM   #6
odimachkie
LQ Newbie
 
Registered: Feb 2009
Posts: 19

Original Poster
Rep: Reputation: 0
thanks for the help everyone, i will be playing with ltrace and strace tonight, as armandrix mentioned.

but, for the record, i did figure out what my problem was.

ive been running the scripts via the bash command, like so:

Code:
odimachkie@LinuxBox:~/bin$bash myscript.sh
the reason i was doing this was that just typing the filename was not working as it would with other scripts. this is because the file permissions did not allow for execution. a little chmod 755 did the trick and now -x works like a dream.

i'm very obviously new at this, so thanks for the input everyone. every little bit helps.
 
Old 02-20-2009, 06:48 AM   #7
chrism01
LQ Guru
 
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,359

Rep: Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751
Actually, for full debugging, try

#!/bin/bash
set -xv
 
  


Reply

Tags
binbash, trace



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
HTTP Trace i_nomad Linux - Security 4 02-16-2009 06:02 AM
How to trace and disable the HTTP TRACE method in Apache 1.3.33 with FreeBSD? SomnathG Linux - Security 1 11-11-2008 09:41 AM
What is the best way to trace down a program ? exceed1 Linux - General 3 04-26-2008 08:31 PM
"killed" Message - how to trace/back trace ebinjose Linux - Kernel 1 01-29-2008 06:12 AM
Recursive trace of bash scripts needed CollieJim Linux - General 3 07-13-2007 10:56 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 04:31 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration