赞
踩
每次启动mongodb都要切换到该文件的bin目录下执行
mongod --dbpath D:\MongoDB\data
为了简便操作,以下创建一个处理文件自动执行启动操作。
添加批处理文件后可以直接Win+R
后输入mongodb
启动mongodb
@echo start
sc /d "%~dp0"
pause
start mongod --dbpath D:\MongoDB\data
start mongod --logpath D:\MongoDB\log\mongo.log
Win+R
后输入mongodb
启动mongodbbat文件是dos下的批处理文件。批处理文件是无格式的文本文件,它包含一条或多条命令。它的文件扩展名- 为 .bat 或 .cmd。在命令提示下输入批处理文件的名称,或者双击该批处理文件,系统就会调用cmd.exe按照该文件中各个命令出现的顺序来逐个运行它们。使用批处理文件(也被称为批处理程序或脚本),可以简化日常或重复性任务。
explorer http://www.baidu.com
打开文件夹
start D:\文件夹1
打开文件
start D:\文件夹1\test.txt
删除当前目录下的test.txt文件
del test.txt
del …\test.txt
del .\TEST*.o
复制当前目录下所有txt文件到文件夹1,文件夹1需要已经创建 copy *.txt 文件夹1
copy file1.txt 文件夹1
copy file2.txt 文件夹2
copy C:\Users\user\Desktop\welcome.txt D:\
修改文件扩展名,所有txt扩展名改为mp3扩展名
ren *.txt *.mp3
ren *.gif *.jpg
ren aa.txt bb.c
创建三个文件夹1
md 文件夹1
md 文件夹2
md 文件夹3
当前目录创建a.txt文件
call c:\code\run.bat
300s 后自动关机
shutdown -s -t 300
shutdown -a
shutdown -r -t 0
60s后休眠
shutdown -h -t 60
attrib +s +h D:\Secret
attrib -s -h D:\Secret
attrib +/-r
attrib +/-a
attrib +/-s
attrib +/-h
+ 设置属性
- 清除属性
r 只读属性
a 存档属性
s 系统属性
h 隐藏属性
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。