1234567891011121314151617181920212223 |
- //
- // ZGShellUtils.h
- // GJTools
- //
- // Created by zhuge on 15/11/6.
- // Copyright (c) 2015年 zhuge. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface ZGShellUtils : NSObject
- // 同步
- +(void) execSync:(NSString *)cmd args:(NSArray*)args;
- +(void) execSync:(NSString *)cmd args:(NSArray*)args data:(NSData*)data;
- +(void) makeFileExecutable:(NSString*) filePath;
- +(void) execInNewTerminalWindow:(NSString *)cmd;
- // 异步
- +(void) execAsyn:(NSString *)cmd args:(NSArray*)args;
- @end
|