sed -n '/<name>oozie.base.url/,/<\/value>/p' /etc/oozie/conf/oozie-site.xml このコマンドでは、次の XML のような情報が返されます。 XML コピー <name>oozie.base.url</name> <value>http://ACTIVE-HEADNODE-NAME.UNIQUEID.cx.internal.cloudapp.net:11000/oozie</value> http://...
sed '/#SKIP/{N; s/YYYY/2016/g}' source.txt 文字列の変換 sed -e "s/oldtext/newtext/g" 文字列の削除 sed -e "s/text//" 行頭にtextがあった場合削除 sed -e "s/^text//" 行末にtextがあった場合削除 sed -e "s/text\$//" abcの後に文字列を追加 sed -e "s/abc/abcxyz/g" ...
GRUB_TIMEOUT=5 GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)" GRUB_DEFAULT=saved GRUB_DISABLE_SUBMENU=true GRUB_TERMINAL_OUTPUT="console" GRUB_CMDLINE_LINUX="crashkernel=auto rhgb quiet numa=off transparent_hugepage=never" GRUB_DISABLE_RECOVERY="true" ノート:このファ...
dst=/etc/ssh/sshd_config sed -i 's/^SyslogFacility.*//' $dst sed -i 's/^PermitRootLogin.*//' $dst sed -i 's/^PasswordAuthentication.*//' $dst echo UseDNS no >> $dst echo SyslogFacility AUTHPRIV >> $dst echo PasswordAuthentication no >> $dst passwd -l root sed -i -e 's/...
#!/bin/bash ## usage getfilestool.sh $pid lsof -p $(pstree -p $1 | grep -o '([0-9]\+)' | grep -o '[0-9]\+' | tr '\012' ,)|grep REG | sed -n '1!p' | awk '{print $9}'|awk 'NF' 以下のコマンドを実行して、ファイルが実行可能であることを検証しま...
16 第3章 RHEL IMAGE BUILDER リポジトリーの設定 $ sudo sed -i -e 's|cdn.redhat.com|satellite6.example.com/pulp/content/YourOrg/YourEnv/YourCV|' /etc/osbuild-composer/repositories/*.json d. 設定が正しく置き換えられたことを確認します. $ sudo ...
djvused Multi-purpose DjVu document editor. djvuserve Generate indirect DjVu documents on the fly. djvutoxml, djvuxmlparser DjVuLibre XML Tools. djvutxt Extract the hidden text from DjVu documents. dkms Dynamic Kernel Module Support dlm_controld dlm cluster control daemon dlm_stonith a proxy for...
それ以外の場合は、ブロックデバイスの multipath エントリを含む新しい multipaths セクションが作成されます。 #!/bin/bash SN=serial_hex ALIAS=device_name CONF=/etc/multipath.conf grep -q '^multipaths {' $CONF UNCOMMENTED=$? if [ $UNCOMMENTED -eq 0 ] then sed -i '/^multipaths...
# openssl x509 -pubkey -in /etc/kubernetes/pki/ca.crt | openssl rsa -pubin -outform der 2>/dev/null | \ openssl dgst -sha256 -hex | sed 's/^.* //' f2a5b22b658683c3634459c8e7617c9d6c080c72dd149f3eb903445efe9d8346 kubeadm-setup.shスクリプトにより、ワーカー・ノードの設定...
nodeTypeBeingDisabled=nt1 nodes=$(sfctl node list | jq --arg nodeTypeBeingDisabled"$nodeTypeBeingDisabled"'.items[] | select(.type==$nodeTypeBeingDisabled) | .name'| sed s/\"//g)echo$nodesfornin$nodes;doecho"Disabling$n"; sfctl nodedisable--node-name$n--deactivation-intent RemoveNode ...