Use the command chmod to apply the permission 755. Following an example. ( Note the x at the end in … More
Category: shell
[Shell] – How to create a spinner with shell script? How to create a spinner which will be finished and do not will output kill termination?
Following an example to do it. function spinner() { case $1 in start) let column=$(tput cols)-${#2}-8 echo -ne ${2} printf … More