This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
""" perform recursive uploads using cadaver | |
cadaver does not support recursive directory upload. | |
This script will upload a given path to a given URL | |
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/python | |
import os | |
import sys | |
import argparse | |
parser = argparse.ArgumentParser(description='List with cygwin') | |
parser.add_argument('-a', '--all', action='store_true', help='include all files') | |
parser.add_argument('-A', '--almost-all', action='store_true', help='include all files except . and ..') | |
args = parser.parse_args(sys.argv[1:]) |