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.
次のコードの%%の意味がわかりません。誰かが少し説明できますか?%% によって参照される perl の特別なハッシュ変数があるようですが、Google 検索を行ってもまだ適切な回答が見つからないため、ここに質問をドロップしてください。
$execOut = `ps -ef --cols 180 | grep nsproc`; $execOut =~ s/%%//g;
それに特別なことは何もありません。のペアのすべてのインスタンスを消去します%。%Perl 文字列と正規表現リテラルでは特別ではありません。内挿できるのは、スカラーと配列のみです。
%
>perl -E"$_ = 'abc%%def%%ghi'; s/%%//g; say;" abcdefghi