Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

list cronjobs linux

crontab -l
Comment

list cron jobs for all users

for user in $(cut -f1 -d: /etc/passwd); do crontab -u $user -l; done
Comment

ubuntu find running cron jobs

pstree -apl `pidof cron`
Comment

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

ubuntu find running cron jobs

pstree -apl `pidof cron`
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

list all cron jobs for all users

php artisan schedule:list
Comment

PREVIOUS NEXT
Code Example
Shell :: uninstall en_web_core md 
Shell :: setting ssh for github 
Shell :: install wp from wp-cli 
Shell :: texlive 2019 in ubuntu 18.4 
Shell :: xargs ffmpeg multiples files 
Shell :: show pghba 
Shell :: v4l2 not found 
Shell :: shortan promt ubunto 
Shell :: How to install 4k video Downloader YouTube on Ubuntu Linux 
Shell :: user friendly linux distro 
Shell :: ufw enable no disturb 
Shell :: list of unix commands 
Shell :: print what s in tarball 
Shell :: run ssh and immediately execute command 
Shell :: Error: path "" is not a descendant of mount point root "" and cannot be exposed from 
Shell :: qemu specify raw 
Shell :: add fold to path in linux 
Shell :: kubectl update field 
Shell :: unix touch all files recursively 
Shell :: asp.net existing database 
Shell :: fork() system call in linux 
Shell :: rubocop command to run auto correct 
Shell :: brownie list networks 
Shell :: cp all files except .git 
Shell :: git clone all repositories in organization 
Shell :: vim delete duplicate lines 
Shell :: deactivate login ubuntu server 
Shell :: remove xcode archives 
Shell :: xrandr 1600x900 ubuntu 
Shell :: how to create a patch file between 2 branches git 
ADD CONTENT
Topic
Content
Source link
Name
3+1 =