由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 在线等! 谁 熟悉 .bat 或者 Shell 啊? 要开发一个工具 去运
相关主题
求教一道面试题来个原创面试题,逗大家玩
indeed 面试题find kth smallest key in BST with O(lgn)
amazon 面试题Create a class for filesystemFB 上周2电面
说说面了几个老印的体会LC的BST iterator到底要考察什么?
已知前序和后序遍历,求可能有多少种树A家电面面经
问一道二叉树遍历的问题? 谢谢!{0xFACEB00C>>2 in decimal}@fb.com到底是啥?
用queue 做树的广度优先遍历,空间复杂度是多少?how to judge a linked list is palindrome?
Level order traversal只让用一个Queue怎么做?share一个大公司的onsite interview question
相关话题的讨论汇总
话题: directory话题: bat话题: shell话题: 工具话题: 开发
进入JobHunting版参与讨论
1 (共1页)
s********e
发帖数: 340
1
今天公司发来一个笔试题,这个Java程序我会,但是这个公司要求 开发一个.bat工具
,直接运行Java程序。这个程序就是遍历目录和其下的子目录,找到名字
为good.xml的文件,然后输出good.xml文件的路径。
比如运行如下命令:
Search.bat -f "good.xml"
我不太明白的是这个. search.bat 工具文件该如何开发。 我网上看了看.bat批处理编
程,知道可以用%1 %2 传递参数(good.xml 和 directory目录名)进入这个search.
bat,但是 -f 的参数如何实现,就没有找到,所以,轻问大家如何去实现?
The program should traverse the directory hierarchy starting with > and print to the console a list of files whose names match the text
specified by the -f option.
l*****a
发帖数: 14598
2
-f is %1.
good.xml is %2

directory

【在 s********e 的大作中提到】
: 今天公司发来一个笔试题,这个Java程序我会,但是这个公司要求 开发一个.bat工具
: ,直接运行Java程序。这个程序就是遍历目录和其下的子目录,找到名字
: 为good.xml的文件,然后输出good.xml文件的路径。
: 比如运行如下命令:
: Search.bat -f "good.xml"
: 我不太明白的是这个. search.bat 工具文件该如何开发。 我网上看了看.bat批处理编
: 程,知道可以用%1 %2 传递参数(good.xml 和 directory目录名)进入这个search.
: bat,但是 -f 的参数如何实现,就没有找到,所以,轻问大家如何去实现?
: The program should traverse the directory hierarchy starting with : > and print to the console a list of files whose names match the text

s********e
发帖数: 340
3
谢谢!

【在 l*****a 的大作中提到】
: -f is %1.
: good.xml is %2
:
: directory

1 (共1页)
进入JobHunting版参与讨论
相关主题
share一个大公司的onsite interview question已知前序和后序遍历,求可能有多少种树
关于BST traverse的复杂度问一道二叉树遍历的问题? 谢谢!
leetcode中的binary tree level order traverse II总是有run t用queue 做树的广度优先遍历,空间复杂度是多少?
M家onsite题一道Level order traversal只让用一个Queue怎么做?
求教一道面试题来个原创面试题,逗大家玩
indeed 面试题find kth smallest key in BST with O(lgn)
amazon 面试题Create a class for filesystemFB 上周2电面
说说面了几个老印的体会LC的BST iterator到底要考察什么?
相关话题的讨论汇总
话题: directory话题: bat话题: shell话题: 工具话题: 开发