Seeing internal progress of shell


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Seeing internal progress of shell
# 1  
Old 09-04-2013
Seeing internal progress of shell

does anyone know if there are any other ways besides "set -x" that can be used to see what a shell script is doing?
# 2  
Old 09-04-2013
It depends on the shell. These are the most common:
Code:
set -o xtrace
sh -x <infile>
_DEBUG="on"

This User Gave Thanks to verdepollo For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Shell Script and Progress Bar or GUI Wrapper

Hi, I have shell script that I am running under Ubuntu as root. Is it possible to hide the command window and show the user some sort of progress /random progress bar / or other form of GUI interaction? On MAC, I have been using Platypus but on Ubuntu I am not sure what to do. (4 Replies)
Discussion started by: naveedanwar4u
4 Replies

2. Shell Programming and Scripting

Progress bar

Hi Experts; Im in the process of writing a shell script for enabling an IT operations to run archiving.We use netbackup. The script is complete, though there is one bit that i need help on. Im trying to have a progess bar for the procedure.I have gone through the man page of the command in... (5 Replies)
Discussion started by: maverick_here
5 Replies

3. Shell Programming and Scripting

need suggestion how to use the progress bar while executing shell

Dear All, I need suggestions, I have below simple text based progress-bar script which will gradually increase the %. #!/bin/ksh i=50 echo "0--------20--------40-------60--------80-------100%" while do echo -n "#" sleep 1 i=`expr $i - 1` done echo Now my problem is, how can I... (3 Replies)
Discussion started by: manas_ranjan
3 Replies

4. Shell Programming and Scripting

Progress bar for cp

I'm trying to use this code to get a progress bar for cp: "Can you get cp to give a progress bar like wget?" But I'm getting these errors: stat: illegal option -- c usage: stat awk: division by zero input record number 1, file source line number 4 I'm using Mac OS X 10.6... (1 Reply)
Discussion started by: pcwiz
1 Replies

5. UNIX for Advanced & Expert Users

Forwarding internal internet packets to internal webserver using iptables

Hi, I need to redirect internal internet requests to a auth client site siting on the gateway. Currently users that are authenticated to access the internet have there mac address listed in the FORWARD chain. All other users need to be redirected to a internal site for authentication. Can... (1 Reply)
Discussion started by: mshindo
1 Replies

6. Shell Programming and Scripting

Progress bar

Hi friends, how can I show a progress bar for any running process in the shell script. For example when I am copying or compressing a file. Thanks. (1 Reply)
Discussion started by: dwiravi
1 Replies

7. Shell Programming and Scripting

Progress

Maybe someone know how to create something like "*". If someone uses Gentoo he must see this while emerge utility preparing an update. I mean the symbol "/" spins. (2 Replies)
Discussion started by: mirusnet
2 Replies

8. Shell Programming and Scripting

how can i create a simple progress bar in shell

please help me as i want to create a simple process bar to check the status for any script......... especially in UNIX (5 Replies)
Discussion started by: aditya.ece1985
5 Replies

9. Shell Programming and Scripting

need progress line

Hello, Iam doing a text processing doing find and replace.. Since it does a bit time to complete.. I want to add a progress line like ####(rotating line) I have written a script for doing this progress line..as below Now i need to incorporate this with my text searching and... (0 Replies)
Discussion started by: esham
0 Replies
Login or Register to Ask a Question