返回列表 发帖

[原创] 我收藏的实用工具和脚本

本帖最后由 plp626 于 2011-5-22 20:58 编辑

========================================
外链工具(常用):
wget80.exe; GNU Wget 1.5.1; 80K体积
GNU:curl-wget-lsort-gawk-grep-sed-split.7z
7za.exe Ver 4.42
7z.7z;7-Zip Ver 4.65
UnRAR.exe;UNRAR 3.80
rar.exe;RAR 3.80
perl56.7z;Perl5.6
perl5.6 非外链



====================================

实用脚本(默认下载所有三方工具,并开启变量延迟):

  • 删非只读的空文件夹(cmd):
  • 给指定文件添加默认图标和默认打开方式(cmd):
  • 给文件夹添加背景于图标(cmd):
  • 获取桌面等系统目录路径(cmd):
  • 获取rar压缩包文件默认打开命令的文件名和路径(cmd):
  • 给右键添加以指定方式打开命令提示符(cmd):
  • 给ntfs分区下的指定目录添加只读可复制不可运行权限(cmd):
  • 过滤文本的重复行(cmd):
  • 创建资源管理器下不可见目录(cmd):
  • 畸形目录的创建删除设置隐藏属性(cmd):
  • 定是关机,任务计划(cmd):
  • 文本字符串正则替换与搜索(cmd):
  • 文本编码转换(cmd):
  • 根据参数列出指定ASCII码(cmd):
  • 以会员身份登录一个论坛,和遍历所有帖子(cmd):
  • 批量下载文本里的url(cmd):
  • 注册表定位(cmd):
  • 获取指定进程id,路径,模块(cmd):
  • 给具体机子设定服务(cmd):
  • 添删启动项(cmd):
  • 求两个时间点的差,以及时间的前后计算(cmd)
  • 文件的批量改名(cmd)
  • 把指定子目录内的指定文件类型移动到指定目录(cmd)
  • 根据参数列出当前目录树下畸形文件夹及所包含的文件(cmd)
  • 根据参数查看当前目录树内指定范围的文件(cmd)

本帖最后由 plp626 于 2011-5-22 16:03 编辑

实用外部命令用法集锦:
  • doskey,xcopy 。。。。 命令用法集锦
  • debug 命令用法集锦
  • wmic 常用命令及用法
  • 网络类。。。
  • 注册表。。。
  • TOP

    本帖最后由 plp626 于 2011-5-22 15:55 编辑

    实用三方工具:
  • rar、unrar、与winrar 命令用法集锦
  • 7z 7za 命令用法集锦
  • wget 命令用法集锦
  • curl 命令用法集锦
  • grep 命令用法集锦
  • sed 命令用法集锦
  • awk命令用法集锦
  • gcc 和tcc 常用参数用法
  • 其他 命令
  • TOP

    本帖最后由 plp626 于 2011-10-19 23:59 编辑

    vbs实用脚本:

    TOP

    本帖最后由 plp626 于 2011-5-22 15:43 编辑

    实用注册表:。。。

    TOP

    本帖最后由 plp626 于 2011-5-22 15:45 编辑

    实用perl脚本。。。

    TOP

    本帖最后由 plp626 于 2011-5-22 15:56 编辑

    windows系统设置和修复实用脚本。。。

    TOP

    本帖最后由 plp626 于 2011-5-22 16:02 编辑

    实用算法伪代码。。

    TOP

    占位编辑。。。

    TOP

    未完待续。。。。

    TOP

    ->gawk -h
    Usage: gawk [POSIX or GNU style options] -f progfile [--] file ...
    Usage: gawk [POSIX or GNU style options] [--] 'program' file ...
    POSIX options:          GNU long options:
            -f progfile             --file=progfile
            -F fs                   --field-separator=fs
            -v var=val              --assign=var=val
            -m[fr] val
            -W compat               --compat
            -W copyleft             --copyleft
            -W copyright            --copyright
            -W dump-variables[=file]        --dump-variables[=file]
            -W exec=file            --exec=file
            -W gen-po               --gen-po
            -W help                 --help
            -W lint[=fatal]         --lint[=fatal]
            -W lint-old             --lint-old
            -W non-decimal-data     --non-decimal-data
            -W profile[=file]       --profile[=file]
            -W posix                --posix
            -W re-interval          --re-interval
            -W source=program-text  --source=program-text
            -W traditional          --traditional
            -W usage                --usage
            -W version              --version
    To report bugs, see node `Bugs' in `gawk.info', which is
    section `Reporting Problems and Bugs' in the printed version.
    gawk is a pattern scanning and processing language.
    By default it reads standard input and writes standard output.
    Examples:
            gawk '{ sum += $1 }; END { print sum }' file
            gawk -F: '{ print $1 }' /etc/passwd
    ->COPY

    TOP

    本帖最后由 plp626 于 2011-5-23 20:53 编辑


    • gawk pattern {action} file;对文件file中的pattern模式做action操作。。
    • 记录record:类似于"语句";
         默认以换行符\n为标记,存储在RS变量内;NR为当前记录的个数;ORS为输出记录分割符;
    • 字段field:类似于“单词”;
         默认以任意空格或制表符为标记,存储在FS变量内;NF为当前记录下字段的个数;OFS为输出字段分隔符;

    TOP

    太菜,没看明白

    TOP

    14# 囝子涵


    看不懂就虚心学,瞎嚷嚷什么!

    TOP

    您收藏的哪些宝贝,怎么不给出下载链接?

    TOP

    返回列表