你知道unix和windows中通常不知道的那个命令是什么?
据说Windows有时会包含几个隐藏的应用程序 可能非常有用。
答案 0 :(得分:3)
Linux中: 历史(命令行历史)
mogrify(适用于所有图像需求/操作)
屏幕(通过ssh注销后运行程序)
答案 1 :(得分:3)
在寡妇XP中,如果你曾试图做过像这样的事情
cd \\pc\c$
您将收到错误
CMD does not support UNC paths as current directories.
只要将它们映射到像这样的临时驱动器号,就可以使用UNC路径。
pushd \\pc\c$
然后当你想简单地回来时......
popd
答案 2 :(得分:3)
视窗:
fdisk /mbr
在Linux分区疯狂之后保存了我的生命(和系统)。
Linux的:
strace
从我登录的shell中运行telnet的同学获取密码方便; - )
答案 3 :(得分:2)
我不确定这是否算不详,但 rsync
非常宝贵。
答案 4 :(得分:2)
在旧版本的Windows(特别是XP)中,我发现shutdown命令非常有用。例如:
shutdown /s /t 3600
将在一小时内关闭计算机。当然,Linux也有类似的命令(我说大多数Linux用户都非常熟悉“shutdown -h now”),但Windows等价物却鲜为人知。
我之所以提到Windows旧版本的原因是在较新的版本中(Vista我肯定知道,不知道Windows Server 200x)关闭的功能有点蹒跚。例如,您只能将最长等待时间设置为十分钟,如果您希望计算机在下载完成后的一两个小时内关闭,则无效。
答案 5 :(得分:1)
hosts file可用于过滤在线广告。
答案 6 :(得分:1)
在bash的〜/ .bashrc文件中:
set -o vi
和〜/ .inputrc
set editing-mode vi
set keymap vi
另外,使用!$ 来避免重新输入:
ls long/dir/name/i/dont/want/to/repeat/file.txt
rm !$
答案 7 :(得分:1)
在Unix中:apropos (粗略了解你想要的东西) |少
答案 8 :(得分:1)
在Windows XP +上:
fsutil
,文件系统实用程序。当我必须创建特定大小(fsutil file createnew <filename> <length>
)的测试文件时,我会使用它。netstat
,显示协议统计信息和当前TCP / IP网络连接。netsh
,网络服务shell;命令行挂钩到各种网络信息。reg
,注册表shell,用于从命令行使用注册表。答案 9 :(得分:0)
和注册
答案 10 :(得分:0)
MMC.EXE
如果管理员可以访问网络中的某些计算机,您可以使用管理控制台的裸机版本来完成令人惊叹的事情。
答案 11 :(得分:0)
在PowerShell中,您可以:
cd \\server\c$\
答案 12 :(得分:0)
在Windows中,我使用SET很容易获得计算机的基本信息。还有:IPCONFIG / FLUSHDNS,IPCONFIG / REGISTERDNS(用于清除和重新加载dns条目),TRACERT(用于跟踪您的位置与网络/互联网上的另一个之间的路径),NETSTAT -s -p tcp(用于网络统计),和PATHPING(比如ping但更好!)
答案 13 :(得分:0)
我发现findstr
相对不为人知,至少我不知道。它与grep
大致相当,当你不一定想要或者需要安装像mingw或cygwin甚至是本地构建的grep
之类的东西时,这很好。
c:\Users\logan>findstr /?
Searches for strings in files.
FINDSTR [/B] [/E] [/L] [/R] [/S] [/I] [/X] [/V] [/N] [/M] [/O] [/P] [/F:file]
[/C:string] [/G:file] [/D:dir list] [/A:color attributes] [/OFF[LINE]]
strings [[drive:][path]filename[ ...]]
/B Matches pattern if at the beginning of a line.
/E Matches pattern if at the end of a line.
/L Uses search strings literally.
/R Uses search strings as regular expressions.
/S Searches for matching files in the current directory and all
subdirectories.
/I Specifies that the search is not to be case-sensitive.
/X Prints lines that match exactly.
/V Prints only lines that do not contain a match.
/N Prints the line number before each line that matches.
/M Prints only the filename if a file contains a match.
/O Prints character offset before each matching line.
/P Skip files with non-printable characters.
/OFF[LINE] Do not skip files with offline attribute set.
/A:attr Specifies color attribute with two hex digits. See "color /?"
/F:file Reads file list from the specified file(/ stands for console).
/C:string Uses specified string as a literal search string.
/G:file Gets search strings from the specified file(/ stands for console).
/D:dir Search a semicolon delimited list of directories
strings Text to be searched for.
[drive:][path]filename
Specifies a file or files to search.
Use spaces to separate multiple search strings unless the argument is prefixed
with /C. For example, 'FINDSTR "hello there" x.y' searches for "hello" or
"there" in file x.y. 'FINDSTR /C:"hello there" x.y' searches for
"hello there" in file x.y.
Regular expression quick reference:
. Wildcard: any character
* Repeat: zero or more occurrences of previous character or class
^ Line position: beginning of line
$ Line position: end of line
[class] Character class: any one character in set
[^class] Inverse class: any one character not in set
[x-y] Range: any characters within the specified range
\x Escape: literal use of metacharacter x
\<xyz Word position: beginning of word
xyz\> Word position: end of word
For full information on FINDSTR regular expressions refer to the online Command
Reference.
答案 14 :(得分:0)
我只想把它放在我今天用的5台Windows XP机器上。
systeminfo
为您提供系统详细信息列表,包括操作系统,修补程序/更新,硬件和网络信息。当然,您可以通过命令或GUI在许多其他地方获取所有这些信息,但这是一个很好的命令,可以很快找到很多关于机器的信息。