コード例 #1
0
ファイル: pyflow_unit_tests.py プロジェクト: Illumina/pyflow
def getCatCmd() :
    if isWindows():
        return ["type"]
    else:
        return ["cat"]
コード例 #2
0
ファイル: pyflow_unit_tests.py プロジェクト: Illumina/pyflow
def getSleepCmd() :
    if isWindows():
        return ["timeout"]
    else:
        return ["sleep"]
コード例 #3
0
ファイル: pyflow_unit_tests.py プロジェクト: Illumina/pyflow
def getRmCmd() :
    if isWindows():
        return ["del","/f"]
    else:
        return ["rm","-f"]
コード例 #4
0
def getCatCmd():
    if isWindows():
        return ["type"]
    else:
        return ["cat"]
コード例 #5
0
def getSleepCmd():
    if isWindows():
        return ["timeout"]
    else:
        return ["sleep"]
コード例 #6
0
def getRmCmd():
    if isWindows():
        return ["del", "/f"]
    else:
        return ["rm", "-f"]