Created
November 5, 2018 02:26
-
-
Save xbalaji/44e4f49e2101d50991e1560e0b488cd7 to your computer and use it in GitHub Desktop.
AT command
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# in a single line | |
echo "wget http://bit.ly/xb-do-unix -q -O test02.txt" | at now + 1 minutes | |
# using here document | |
at 6:26 PM << EOF | |
wget http://bit.ly/xb-do-unix -q -O test02.txt | |
EOF | |
# if there is no EOF given, use CTRL+D to terminate the commands |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment