command

A collection of 4 posts

ruby

Filezilla Server 新增大量使用者與在Windows上創建大量資料夾

Filezilla Server中並無設定可在某一directory下自動創立與登入使用者同名資料夾的功能,當然也無一口氣建立大量使用者的方式,故在此主要方式為:找出Filezilla Server儲存使用者相關設定的檔案位置、利用windows command line創建大量資料夾給這些使用者、寫一script產生大量使用者設定內容。 在Windows上創建大量資料夾 ``` for /L %a in (1 1 36) do mkdir team%a <ul> <li><span style="line-height: 22px;">/L: 代表後面的(1 1 36)並非一個list,而是指loop從1到36,每次間隔1。

  • hothero
    hothero
ruby

warning: Insecure world writable dir

相信ruby的程式開發者或Mac使用者採用homebrew這套ruby撰寫的package manager(套件管理系統)都常常遇到這樣的問題"warning: Insecure world writable dir..."。例如: warning: Insecure world writable dir /usr/local/bin, mode 040777 warning: Insecure world writable dir /usr/local, mode 040777 這是程序沒有權限處理的問題,使用以下的指令修改即可 chown o-w 路徑(Path),例如:chown o-w /usr/local/bin 相關連結

  • hothero
    hothero
You've successfully subscribed to hothero's TechNote!