1
cygwin / bash条件付き問題
WindowsでCygwinを使用していますが、結果を比較および出力するには条件付きで実行する必要があります。簡単に聞こえますが、期待どおりに機能しません。私のスクリプトは次のとおりです。 ls //NSVA/Matrical/Vitesse/REPORTS | grep .csv | grep $1 | grep -v Pull | wc -l > a ls //10.9.214.200/Lims/LimsLZ/starlims1/done/Nitrostore_stored/$1 | grep -v Pull |wc -l > b echo 'Count of Uploaded files in NS is' cat a echo 'Count of Uploaded files in LZ is' cat b if [ …