Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

list cron jobs for all users

for user in $(cut -f1 -d: /etc/passwd); do crontab -u $user -l; done
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 :: git origin master some file 
Shell :: install vue js ubuntu 
Shell :: how to update vscode on ubuntu 
Shell :: how to get the size of directory in linux 
Shell :: postgres config file location 
Shell :: ubuntu print path 
Shell :: pip install geopandas 
Shell :: pip install streamlit upgrade 
Shell :: git delete changes 
Shell :: docker go inside a container 
Shell :: lollypop music player install ubuntu 
Shell :: git push command line 
Shell :: jupyter kernel dies 
Shell :: bash filter environment variable results 
Shell :: git reset to a file 
Shell :: how to install chromedriver on linux 
Shell :: cat /etc/os-release 
Shell :: clementine linux download 
Shell :: reload shell command 
Shell :: linux rename folder add suffix 
Shell :: pip installer for mac 
Shell :: git remote set-url username password 
Shell :: awk get second column from command output 
Shell :: anydesk ubuntu 
Shell :: cmd kill process by pid 
Shell :: clear mac dns cache 
Shell :: bluetooth headphone not working linux mint 
Shell :: ionic cordova build release comand 
Shell :: ls in hdfs 
Shell :: gitignore dotnet mvc 
ADD CONTENT
Topic
Content
Source link
Name
2+3 =