Humanity

Edit the world by your favorite way

2010-10-07から1日間の記事一覧

Synergy+でrootで起動したsynergysにsynergycがつながってくれない

のでとりあえず。 これってバグだったりするのかなー。

シェルスクリプトで引数をスライスして別のコマンドに渡す

sh

以下の例ではfというシェル関数に「foo bar "sp sp sp" -- baz」という引数を与えて 「--」までの引数、つまり「foo」「bar」「sp sp sp」をgというシェル関数に渡している。渡したい引数のそれぞれをクオートしてevalとともに関数を呼び出せば 空白を含む引…

Vimのシェルスクリプトのハイライトで$(...)が赤く表示される

Vim

syntax/sh.vimから。 " $(..) is not supported by sh (Bourne shell). However, apparently " some systems (HP?) have as their /bin/sh a (link to) Korn shell " (ie. Posix compliant shell). /bin/ksh should work for those " systems too, however, …