Saving Sites

File save

Wiki for site file.mkedziora.pl

To upload new file with random name:

curl -F 'file=@(full local path to file)' https://file.mkedziora.pl/upload

Available parameters given in -F ''

  • Local path to file, required.
    -F 'file=@()'
  • Limit access to file to only your IP address - 1, default 0.
    -F 'priv='
  • Name for link to file, default random.
    -F 'name='
  • Time to delete file, default - forever.
    -F 'exp='
  • Password to access file, default blank.
    -F 'pass='

Downloading content:

In the case of an unsecured resource:

curl -o (filename) https://file.mkedziora.pl/(name)

or wget:

wget -O (filename) https://file.mkedziora.pl/(name)

If the resource is password-protected, it must be accessed in the as follows:

curl -u :(password) -o (filename) https://file.mkedziora.pl/(name)

or wget:

wget --user="" --password=(password) -O (filename)
          https://file.mkedziora.pl/(name)

Delete content:

In the case of an unsecured resource:

curl https://file.mkedziora.pl/delete/(name)

If the resource is password-protected:

curl -u :(password) https://file.mkedziora.pl/delete/(name)