![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| how to have a cp progress bar? | wrapster | UNIX for Advanced & Expert Users | 1 | 05-21-2008 02:56 AM |
| Checking cp progress | MarGur | UNIX for Dummies Questions & Answers | 0 | 05-15-2007 04:13 PM |
| progress bar | sakthi.abdullah | UNIX for Advanced & Expert Users | 4 | 12-08-2006 05:23 AM |
| TAR- Progress bar? | dicko44 | Shell Programming and Scripting | 1 | 09-01-2006 08:11 AM |
| progress bar | inquirer | Shell Programming and Scripting | 3 | 11-26-2002 11:22 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
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 ![]() I have not tested this but it should work. |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|