51

I am going to schedule a job by using at command. Here I tried the following command:

$ at now + 1 minute
echo 'Test at command'
<EOD>

I saw the job is scheduled by using at -l. However, I saw no echo out.

I guess that I may need to add user to at.allow file. I cannot find at.allow in my Mac (Snow Leopard). Not sure what I need to do to test this at command?

Chealion
  • 25,408
  • 8
  • 67
  • 75
David.Chu.ca
  • 4,975
  • 9
  • 32
  • 36
  • I tried to read info from man at. It mentioned that "If the file _PERM_PATH/at.allow exists, only usernames mentioned in it are allowed to use at... If ... at.allow does not exists, _PERM_PATH/at.deny is checked,.." I am not sure what _PERM_PATH is. –  Sep 19 '09 at 04:41
  • In the case of Apple OSX Leopard, PERM_PATH for "at" is /usr/lib/cron. – Richard Hoskins Sep 19 '09 at 15:28
  • For Mac OS X Lion it's `/var/at` – Stefan Schmidt Oct 12 '11 at 19:44

6 Answers6

47

To enable the needed atrun daemon, as man atrun says, execute:

launchctl load -w /System/Library/LaunchDaemons/com.apple.atrun.plist

as root (e.g. via sudo). Once you've done that, /var/at/ will be the key directory (though the simplest way is to use at as root -- e.g., once again, by sudo!-).

Alex Martelli
  • 1,466
  • 13
  • 10
  • I know that you need to be root to enable the atrun daemon, but you do not need to be root to run "at" commands. (Unless those commands require root.) – Richard Hoskins Sep 19 '09 at 15:24
  • 1
    does this activation or atrun survive reboots? – Eric O. Lebigot Jun 30 '11 at 09:38
  • According to the man page yes, but I haven't tried it. – Stefan Schmidt Oct 12 '11 at 19:38
  • 1
    if `/var/at/at.deny` is empty you don't need to be root to queue at jobs, otherwise you can add your username to `/var/at/at.allow`. – Stefan Schmidt Oct 12 '11 at 19:42
  • I should read the man pages first... Thanks! – polym Jul 03 '15 at 15:22
  • tested on yosemite, I had to wait 20 extra seconds before the job was actually executed (print to a file, do not echo because it won't show in the console) – ling Oct 17 '15 at 05:52
  • 6
    It's now May, 2019. This answer was correct for some older versions of macos, but it's not a complete answer for Mojave. There's a [current, up-to-date answer on the U&L SE site](https://unix.stackexchange.com/a/478840/286615). – Seamus May 30 '19 at 11:08
  • It's now August, 2022 & this answer hasn't been edited. -1 – Seamus Aug 30 '22 at 22:14
15

In Snow Leopard you need to:

  1. Edit the /System/Library/LaunchDaemons/com.apple.atrun.plist, change the disabled child node from true -> false.

  2. Unload the current /System/Library/LaunchDaemons/com.apple.atrun.plist with:

    sudo launchctl unload -F /System/Library/LaunchDaemons/com.apple.atrun.plist
    

    Then load the edited version

    sudo launchctl load -F /System/Library/LaunchDaemons/com.apple.atrun.plist
    
  3. Test that it works with:

    echo blah | at now+1
    
  4. In case the echo fails for a different reason, you should be able to at least see the queue get cleared with:

    atq
    
muru
  • 1,195
  • 9
  • 33
5

I tried this on OS X Lion and it seemed to work.

First enable the atrun deamon:

launchctl load -w
/System/Library/LaunchDaemons/com.apple.atrun.plist

Then add [your username] to /var/at/at.allow.

When executed you will receive output at /var/mail/[your username]

I find that queued items with batch take a few minutes to get actually get executed.

chris838
  • 151
  • 1
  • 2
3

Others have replied about at being disabled on Mac OS X, and I don't know about that, but there is another problem: Where do you expect your echo command to print its message? On other Unix systems that I have used it does not print in the same shell window where you gave the at command. Remember that when the at job is run, you might not even be logged in any more.

Try to write something to a file instead, and see if that file appears at the right time.

2

The launchctl step wasn't enough for me; Seamus's comment pointed me to a more recent answer.

The TL;DR is you also need to add /usr/libexec/atrun at System Preferences > Security & Privacy > Full Disk Access.

Carl Walsh
  • 393
  • 3
  • 16
0

My installation of OS X (10.4) says in man at:

NOTE
     at, batch, atq, atrm are all disabled by default on Mac OS X.

Have you enabled atrun according to the instructions there?

Greg Hewgill
  • 5,499
  • 2
  • 29
  • 30
  • I tried to find where is atrun in my Mac. From web, another option is to add user to at.allow. I could not find this file (at.allow) neither. –  Sep 19 '09 at 04:36