由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 最后问个 unzip 的问题
相关主题
[SAS] multi-thread programming and parameters...仰天长啸!哪里可以搞到SAS 9.2 with EM!!!!
SAS renew请问有在Vista Home Premium上成功安装SAS9.2的吗?
how to automatted run a SAS program on every monday?9.2版的SAS(多国语言版)的SID
【包子】batch mode求教有谁装了SAS9.2 在win7 home 64bit系统上?
终于知道怎么破解SAS了SAS 软件
SAS问题:how to download a file from internet and unzip it and read it?包子求 SAS 9.3 有效的 sid 文件
SAS软件下载地址已失效(as of 3/23/2010)SAS 9.3.1 64位+SID(WIN7,8,XP已测)直接下载
请问谁有64位SAS安装SID文件?求SAS 32位,任何版本
相关话题的讨论汇总
话题: ny话题: unzip话题: sid话题: operations话题: workgroups
进入Statistics版参与讨论
1 (共1页)
b*****e
发帖数: 223
1
可见我有多抓狂了,这么多问题,呜呜
如果 folder 里有 100 zipped file,我怎么可以让他们自动的一个个去 unzip,不需
要我一个个点开,填path做100下
b*****n
发帖数: 685
2
做一个shell batch就可以
p********a
发帖数: 5352
3
x command
b*****e
发帖数: 223
4
thanks upstairs two! //bow

【在 p********a 的大作中提到】
: x command
D******n
发帖数: 2836
5
in that folder ,ctrl+a, use RIGHT mouse button to drag them to a new folder,
select the option to unzip the files in the popup menu.

【在 b*****e 的大作中提到】
: 可见我有多抓狂了,这么多问题,呜呜
: 如果 folder 里有 100 zipped file,我怎么可以让他们自动的一个个去 unzip,不需
: 要我一个个点开,填path做100下

b*****e
发帖数: 223
6
did it but no unzip option in the popup menu ah, only copy here and move
here

folder,

【在 D******n 的大作中提到】
: in that folder ,ctrl+a, use RIGHT mouse button to drag them to a new folder,
: select the option to unzip the files in the popup menu.

p********a
发帖数: 5352
7
You can do it by SAS
first read the folder name, and you can select all the file names into marco
variables. Then use x command to unzip the files
Use the following to get file names-
%sysexec cd &dir; %sysexec dir *.txt /b/o:n >flist;
data indexfile;
length filen $200 ;
infile "&dir./flist" length=reclen;
input filen $varying256. reclen;
run;
b*****e
发帖数: 223
8
谢楼上
lg 上来帮我看了下,那些都是 .exe 的 zip files,就是什么自压缩文件乱七八糟的
,最后还是用 batch file
前三个是run sas,后三个是 unzip files
start/w C:"Program Files"\SAS\SASFoundation\9.2\SAS.exe -sysin Y:\Operations
\Workgroups\SID\NY\NY_SID_2004_AHAL
start/w C:"Program Files"\SAS\SASFoundation\9.2\SAS.exe -sysin Y:\Operations
\Workgroups\SID\NY\NY_SID_2004_CHGS
start/w C:"Program Files"\SAS\SASFoundation\9.2\SAS.exe -sysin Y:\Operations
\Workgroups\SID\NY\NY_SID_2004_CORE
Y:\Operations\Workgroups\SID\NY\UNZIP_NY\NY_SIDC_2004_AHAL.exe /auto Y:\
Operations\Workgroups\SID\NY\UNZIP_NY
Y:\Operations\Workgroups\SID\NY\UNZIP_NY\NY_SIDC_2004_CHGS.exe /auto Y:\
Operations\Workgroups\SID\NY\UNZIP_NY
Y:\Operations\Workgroups\SID\NY\UNZIP_NY\NY_SIDC_2004_CORE.exe /auto Y:\
Operations\Workgroups\SID\NY\UNZIP_NY
1 (共1页)
进入Statistics版参与讨论
相关主题
求SAS 32位,任何版本终于知道怎么破解SAS了
全部家产,包子求 SAS 9.2 或者9.3 或者9.1 SID文件SAS问题:how to download a file from internet and unzip it and read it?
求SID /SAS 9.3SAS软件下载地址已失效(as of 3/23/2010)
successfully run windows SAS9.1 in ubuntu with wine :-)请问谁有64位SAS安装SID文件?
[SAS] multi-thread programming and parameters...仰天长啸!哪里可以搞到SAS 9.2 with EM!!!!
SAS renew请问有在Vista Home Premium上成功安装SAS9.2的吗?
how to automatted run a SAS program on every monday?9.2版的SAS(多国语言版)的SID
【包子】batch mode求教有谁装了SAS9.2 在win7 home 64bit系统上?
相关话题的讨论汇总
话题: ny话题: unzip话题: sid话题: operations话题: workgroups