https://gist.github.com/armando-couto/740f6382393b6256a1d8f0ba4c4616a0
Arquivo da categoria: Shell Script
Delete files older than 10 days using shell script in Unix
How to Create a Containerised Go Application which Can Execute Shell Commands
Duvida em função shell [Shell Script]
Shell Script Monitorar Website / WebService
What is the KornShell Language?
The KornShell language was designed and developed by David G. Korn at AT&T Bell Laboratories. It is an interactive command language that provides access to the UNIX system and to many other systems, on the many different computers and workstations on which it is implemented. The KornShell language is also a complete, powerful, high-level programming language for writing applications, often more easily and quickly than with other high-level languages. This makes it especially suitable for prototyping. There are two other widely used shells, the Bourne shell developed by Steven Bourne at AT&T Bell Laboratories, and the C shell developed by Bill Joy at the University of California. ksh has the best features of both, plus many new features of its own. Thus ksh can do much to enhance your productivity and the quality of your work, both in interacting with the system, and in programming. ksh programs are easier to write, and are more concise and readable than programs written in a lower level language such as C.
Shell Script
#!/bin/bash
while true; do
echo "Baixando Convenio"
cd /usr/share/git-redmine/conv/
git pull
echo "Compras Web"
cd /usr/share/git-redmine/compras-web/
git pull
echo "Dashboard"
cd /usr/share/git-redmine/dashboard/
git pull
sleep 60;
done
Mac shellscript for converting OTF to TTF, EOT, SVG and WOFF.
How to make a jar file run on startup & and when you log out?
https://askubuntu.com/questions/99232/how-to-make-a-jar-file-run-on-startup-and-when-you-log-out
Here’s a easy way to do that using SysVInit. Instructions:
- Create the start and the stop script of your application. Put it on some directory, in our example is:
- Start Script:
/usr/local/bin/myapp-start.sh
- Stop Script:
/usr/local/bin/myapp-stop.sh
Each one will provide the instructions to run/stop the app. For instance the
myapp-start.sh
content can be as simple as the following:#!/bin/bash java -jar myapp.jar
For the stop script it can be something like this:
#!/bin/bash # Grabs and kill a process from the pidlist that has the word myapp pid=`ps aux | grep myapp | awk '{print $2}'` kill -9 $pid
- Start Script:
- Create the following script (
myscript
) and put it on/etc/init.d
./etc/init.d/myscript
content:#!/bin/bash # MyApp # # description: bla bla case $1 in start) /bin/bash /usr/local/bin/myapp-start.sh ;; stop) /bin/bash /usr/local/bin/myapp-stop.sh ;; restart) /bin/bash /usr/local/bin/myapp-stop.sh /bin/bash /usr/local/bin/myapp-start.sh ;; esac exit 0
- Put the script to start with the system (using SysV). Just run the following command (as root):
update-rc.d myscript defaults
PS: I know that Upstart is great and bla bla, but I preffer the old SysV init system.