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。
command [Note]heroku 指令記錄 # creating app on heroku need to with --stack cedar for rails 3.2 and ruby 1.9.3 heroku create # create a new app on heroku heroku login heroku keys:add ~/.ssh/id_rsa.pub # upload the public key to heroku server for uploading
command [Python]read all *.txt by command line Sometimes, we'd like to process some file (like *.txt), maybe parsing, segmentation, and so on. And Python specialized in string process. import os f = os.popen("ls *.txt") files = f.readlines() f.close() print len(files) for f in files:
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 相關連結