I am using Visual Studio 2010 and I am trying to change the timen on my PC to 11 pm the ``day before yesterday. My question is can somebody tell me what statement that will allow ``me to output directly to DOS using C#.
对于写得不好的问题,我很抱歉。两天前我想把时间改到11点50分。我不熟悉Windows下的编程,我一直使用Linux。在linux中,我会从命令行执行文件并输出
在学习/理解Linux的过程中(很难但很享受它)。我编写了一个非常短的shell脚本,它使用wget从网站中提取index.html文件。
#!/bin/bash
#Script to wget website mywebsite and put it in /home/pi/bin
index=$(wget www.mywebsite.com)
当我将命令wget_test输入命令行时,这是可行的。它将一个.html文件输出到/home/pi/bin。
我已经开始尝试通过cron来完成这个任务,这样我就可以在特定的时间完成它。我通过使用crontab -e输入了以下内容
23 13 *
使用Google,我有以下设置:
------------------------------------------------
| Game | Player 1 | Player 2 | Player 3 |
------------------------------------------------
| Racing | L | W | X |
| Sonic 2 | W | L | X |
| Sonic 2 | W | X |
下面的代码应该会在今天上午9:00在我的Linux命令行上打印"hello“(或一些提示):
$ at 9:00AM
warning: commands will be executed using /bin/sh
at> echo "hello"
at> <EOT>
但是,在指定的时间,什么也不会发生。
我有一个空的etc/at.deny,没有/etc/at.allow文件,所以使用该命令的权限应该不会有任何问题。此外,在上午9:00写入文件的工作方式如下:
$ at 9:00AM
at> echo "hello" &g