0

I'm trying to learn how to use the at command and to do that I tried to run the pwd command, but it seems that nothing happens:

enter image description here

How can I run a command like pwd by using at?

1 Answers1

2

Output is not made in your current terminal window. You need to send it somewhere. For example to a log file, via Email, ...

pwd >> pwd.log

Then you can check the output:

cat pwd.log
#or
tail -f pwd.log
pLumo
  • 27,991