選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

16 行
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 $ ";_;"