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:
How can I run a command like pwd by using at?
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:
How can I run a command like pwd by using at?
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