code = <<-EOH
bundle install
bundle exec unicorn -c /etc/unicorn.cfg -D
EOH
這是什麼代碼呢? <<-
叫什麼?
code = <<-EOH
bundle install
bundle exec unicorn -c /etc/unicorn.cfg -D
EOH
這是什麼代碼呢? <<-
叫什麼?
可以在廚師食譜在一個塊傳遞多個命令,這樣
bash 'Install ftppwd' do
code <<-EOH
mkdir #{ftppwd_dir}
chmod 775 #{ftppwd_dir}
chgrp #{batch_id} #{ftppwd_dir}/*
chown #{batch_id} #{ftppwd_dir}/*
EOH
還有一個Ruby <<~END
一個新定界符語法更類似於你通常會看到在大多數shell和其他語言中,~
而不是-
告訴Ruby去掉前導空白以匹配塊中最小的縮進行。
https://infinum.co/the-capsized-eight/multiline-strings-ruby-2-3-0-the-squiggly-heredoc
哦,錯過了這一個。 –
Symbolhound是搜索谷歌無法處理的語法的一種方法。 –