Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

crontab save

# As others have pointed out, the first thing is to make sure you're 
# using an editor you like.
# We're all admins here, so we all like vi (ducks, runs).

export VISUAL=vi
crontab -e
# (do some edits, finishing with ESCAPE)
:wq # ENTER
Comment

how to edit and save crontab in linux

crontab -e		# open user crontab in edit mode
i      			# for insert.  Make your changes
:wq!   			# quit and save
crontab -l		# open user crontab in read mode
Comment

PREVIOUS NEXT
Code Example
Shell :: primary git commands 
Shell :: how to run bash scripts 
Shell :: amplify remove environment 
Shell :: ignore line format in git 
Shell :: download subfolder from github 
Shell :: como atualizar a versão do angular 
Shell :: git remove all pdf files 
Shell :: tail linux 
Shell :: git create and checkout branch 
Shell :: git push template 
Shell :: windows could not start the apache 2.4 on local computer 
Shell :: heic open linux 
Shell :: setup git project 
Shell :: Run C# script on linux terminal 
Shell :: install aws cli version 2 on mac 
Shell :: install glfw3 
Shell :: tr new line 
Shell :: docker wget not found 
Shell :: discard all changes 
Shell :: fatal: invalid gitfile format 
Shell :: bash run program in loop 
Shell :: git merge without commit 
Shell :: get path of command 
Shell :: Ubuntu – Root folder access via gui 
Shell :: git get latest 
Shell :: upgrade ubuntu command line 
Shell :: how to setup vim plugins 
Shell :: SSH key passphrase reset 
Shell :: how to reset and change remote url in git 
Shell :: bash get file size in mb 
ADD CONTENT
Topic
Content
Source link
Name
2+8 =