Sponsored Content
Full Discussion: Progress
Top Forums Shell Programming and Scripting Progress Post 302160268 by adderek on Monday 21st of January 2008 09:32:51 AM
Old 01-21-2008
this should work (just fill red parts)

typeset goto_x_y=...
typeset char='/|\-'
typeset -i tick=0
while [[ create your own condition ]] ;do
print -- "${goto_x_y}${char[${tick}]}"
tick=$tick+1
[[ $tick -gt 3 ]] && tick=0
done

Usually you should be able to use backspace instead of goto_x_y Smilie

I have not tested this but it should work.
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

progress bar

i am trying to write a script where in it will connect to remote servers and execute remote scripts to fetch some data and ftp it back to a main server. i would like to add a script where it will show some sort of status bar until such time that the expected files have been recieved. something... (3 Replies)
Discussion started by: inquirer
3 Replies

2. UNIX for Dummies Questions & Answers

Progress reporting

Hi everyone, I'm completely new to the board and to UNIX and I have the following question regarding a script I am building. I am trying to copy an entire directory into a new directory and I was wondering if there is any way of printing on screen a progress report, for example a percentage. It... (9 Replies)
Discussion started by: Ypnos
9 Replies

3. UNIX for Advanced & Expert Users

progress bar

Hi all, I want to print # like that in a progress bar.. For e.g We can notice that during installation ... but,how to do that? Thnx, sakthi. (4 Replies)
Discussion started by: sakthi.abdullah
4 Replies

4. UNIX for Dummies Questions & Answers

Checking cp progress

Hi gurus. I wonder if there is some command that will help me to determing the progress of cp. I'm copying huge amount of files, and through the ps x -uoracle see, that it goes 1771 pts/6 S+ 0:37 cp 1_2600_617913793.arc 37 minutes. Is there command, that helps determing on what... (0 Replies)
Discussion started by: MarGur
0 Replies

5. UNIX for Advanced & Expert Users

how to have a cp progress bar?

Hi all, This is a reformed post to my earlier ones!!!!!! I would like to know how to include a progress bar while using the cp... I am copying a few huge files from cdrom but am unable to figure out ,how to give a progress bar!!!!! I checked out other sites as well,but the issue here is... (1 Reply)
Discussion started by: wrapster
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 bar

hi all, in shell script (ksh), how do i write a progress bar ?? i have a script which searches files and while its searching i am currently printing out "." and if it finds what its searching for the script prints out the name of the file e.g .................. firstFile.txt... (2 Replies)
Discussion started by: cesarNZ
2 Replies

8. What is on Your Mind?

Progress update

Please excuse my long absence from the Unix and Linux Forums, but I have been busy at school getting my CIW Associate Certificate. I have also been in the process of designing my own business cards, stationary and envelopes for Prudent Technologies the company I have started with modest... (2 Replies)
Discussion started by: FloridaBSD
2 Replies

9. 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
PROFIL(2)							System Calls Manual							 PROFIL(2)

NAME
profil - execution time profile SYNOPSIS
profil(buff, bufsiz, offset, scale) char *buff; int bufsiz, offset, scale; DESCRIPTION
Buff points to an area of core whose length (in bytes) is given by bufsiz. After this call, the user's program counter (pc) is examined each clock tick (VAX and TAHOE: 100 ticks/second = 10 milliseconds per tick; 60 ticks/second ~= 16 milliseconds per tick); offset is sub- tracted from it, and the result multiplied by scale. If the resulting number corresponds to a word inside buff, that word is incremented. The scale is interpreted as an unsigned, fixed-point fraction with 16 bits of fraction: 0xffff gives a 1-1 mapping of pc's to words in buff; 0x7fff maps each pair of instruction words together. Profiling is turned off by giving a scale of 0 or 1. It is rendered ineffective by giving a bufsiz of 0. Profiling is turned off when an execve is executed, but remains on in child and parent both after a fork. Profiling is turned off if an update in buff would cause a mem- ory fault. RETURN VALUE
A 0, indicating success, is always returned. SEE ALSO
gprof(1), prof(1), setitimer(2), monitor(3) 3rd Berkeley Distribution May 6, 1987 PROFIL(2)
All times are GMT -4. The time now is 09:29 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy