Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
RubyMineでシンボルを文字列に変換する意図を使用する場合、一重引用符を使用します。二重引用符を使用するようにRubyMineを構成することは可能ですか?
現在はできません。関連する問題に投票するか、新しい問題を送信してください。
bash では、標準 (1) およびエラー (2) の出力を次のように再ルーティングして破棄できます。
>/dev/null 2>&1
しかし、次の例では何かが異なります。
nohup myscript.sh >myscript.log 2>&1 </dev/null &
<