You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 line
433B

  1. module IrcBot.RemoteUploader where
  2. import System.Process
  3. uploadLocalFile :: String -> IO String
  4. uploadLocalFile filePath =
  5. do
  6. if filePath /= "" then do
  7. let command = "curl"
  8. let params = "file=@"++ filePath
  9. readProcess command ["-F",params,"0x0.st"] ""
  10. else return $ ";_;"