Rev 620 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
#!/bin/bash #monitor current position while [ true ]; do sleep 1; ls -alh; done
#!/bin/bash
#monitor current position
while [ true ];
do
sleep 1;
ls -alh;
done