Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

how to check running cron jobs in linux command

crontab -l  

#This command list the Cron Jobs
#anonymous@oilivemylife.com [~]# crontab -l
#MAILTO="xyz@mail.com"
#SHELL="/usr/local/cpanel/bin/jailshell"
#1 3 * * * /usr/local/bin/perl /usr/local/checkupdates.pl
#*/15 * * * * tar czf ~/wpbackup/wp_backup_new_`date +%Y_%m_%d`.tgz ~/xyz.com
Comment

find all cron jobs in linux

#for user in $(getent passwd | cut -f1 -d: ); do echo $user; crontab -u $user -l; done
Comment

find all cron jobs in linux

#for i in $( ls /home ); do echo $i: ; sudo crontab -u $i -l; done
Comment

PREVIOUS NEXT
Code Example
Shell :: vite react command 
Shell :: installing pytesseract in python linux 
Shell :: docker Problem with the CMake installation, aborting build. CMake executable is cmake 
Shell :: qpdf decrypt with password 
Shell :: node-gyp error 
Shell :: docker exec as root 
Shell :: powershell convert string to int 
Shell :: store git credentials ubuntu 
Shell :: check if xacro works ros 
Shell :: [ERROR CRI]: container runtime is not running: output: 
Shell :: git vimdiff 
Shell :: meteor installation 
Shell :: restart docker daemon windows 
Shell :: check ram on linux 
Shell :: show date linux 
Shell :: pip install ignore errors 
Shell :: ubuntu 22 install gstreamer0.10-plugins-bad 
Shell :: install obs studio ubuntu 
Shell :: git remote set-url username password 
Shell :: brew install pip 
Shell :: show curr path cmd 
Shell :: netsh wlan command for wifi password 
Shell :: git delete local tag 
Shell :: openssh server ubuntu 
Shell :: pacman remove orphaned dependencies 
Shell :: sed recursive replace 
Shell :: hardhat compile 
Shell :: how to push code to gitlab 
Shell :: know kernel version linux mint 
Shell :: * (no branch, rebasing <branch-name) 
ADD CONTENT
Topic
Content
Source link
Name
3+4 =