Horje
crontab execute shell script Code Example
crontab execute shell script
# Script musts start with:
#!/bin/sh
# Allow execute grant on it
chmod +x /bin/sh/myscript.sh
# Edit crontab:
crontab -e							# open user crontab in edit mode
i      								# for insert.  Make your changes
0 2 * * * /bin/sh myscript.sh     	# plan it daily at 2am for example
:wq!   								# quit and save




Shell

Related
push github Code Example push github Code Example
! [rejected] master -> master (fetch first) error: failed to push some refs to 'https://github.com/Armandres30/Xpath.git' Code Example ! [rejected] master -> master (fetch first) error: failed to push some refs to 'https://github.com/Armandres30/Xpath.git' Code Example
how to push folder into private repo github Code Example how to push folder into private repo github Code Example
git push to branch Code Example git push to branch Code Example
git push origin master Code Example git push origin master Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9