web-dev-qa-db-ja.com

.icsファイルを編集するBashスクリプト

フォルダー内の.icsファイルから選択するbashスクリプトを作成し、選択したファイル内で「検索と置換」を実行してから、そのファイルを保存して名前を変更します。私は検索からいくつかのことをまとめましたが、それをすべて機能させるために私が何をしているのか十分にわかりません...

これが私がメニューに持っているものです:

    #!/bin/bash

echo "The following `*.ics` files were found; select one:"

# set the Prompt used by select, replacing "#?"
PS3="Use number to select a file or 'stop' to cancel: "

# allow the user to choose a file
select filename in *.ics
do
# leave the loop if the user says 'stop'
if [[ "$REPLY" == stop ]]; then break; fi

# complain if no file was selected, and loop to ask again
if [[ "$filename" == "" ]]
then
    echo "'$REPLY' is not a valid number"
    continue
fi

# now we can use the selected file
echo "$filename installed"

# it'll ask for another unless we leave the loop
break
done

これは、現在.icsファイルの編集に使用しているコードですが、現在のディレクトリにあるすべての.icsファイルを変更します。

#!/bin/bash

###Fixes all .ics files to give ALL DAY events rather than 0000-2359  
####All .ics files
FILES="*.ics"


# for loop read each file
for f in $FILES
do
INF="$f"

##Change DTSTART:[yyyymmddThhmmss] to DTSTART;VALUE=DATE...##

sed -i[org] 's/DTSTART:2016/DTSTART;VALUE=DATE:2016/g' $INF

sed -i[org] 's/T[0-9][0-9][0-9][0-9][0-9][0-9]/ /g' $INF

###Remove DTEND:###
sed -i[org] 's/DTEND:[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]/ /g'$INF

done

これをまとめて目標を達成するにはどうすればよいですか?

1
Chad Wright

次のように、case構文を使用して構成することができます。

#!/bin/bash

shopt -s nullglob

echo 'The following `*.ics` files were found; select one:'

select f in *.ics "Quit"; do
  case $f in
    "Quit")
      echo "Quitting"
      break
      ;;
    *)
      if [ -z "$f" ]; then
        echo "Invalid menu selection"
      else
        echo "Doing something with $f"
      fi
      ;;
    esac
done

変更 echo "Doing something with $f"選択したファイルでやりたいことをすべて実行します。ファイルが比較的複雑な場合は、シェル関数に移動することをお勧めします。引用することを忘れないでください。つまり、"$f" Wordの分割を防止します。

1
steeldriver

わかりました、私はそれを理解しました。これが私のコードです:

#!/bin/bash


shopt -s nullglob

echo 'The following `*.ics` files were found; select one:'

select f in *.ics "Quit"; do
  case $f in
    "Quit")
      echo "Quitting"
      break
      ;;
    *)
      if [ -z "$f" ]; then
        echo "Invalid menu selection"
      else
        echo "Creating all-day events in $f"
          ##Change DTSTART:[yyyymmddThhmmss] to DTSTART;VALUE=DATE...##
          sed -i.orig 's/DTSTART:2016/DTSTART;VALUE=DATE:2016/g' "$f"
          sed -i.orig 's/T[0-9][0-9][0-9][0-9][0-9][0-9]/ /g' "$f"
          ###Remove DTEND:###
          sed -i.orig  's/DTEND:[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]/ /g' "$f"
      fi
      ;;
    esac
done

有効または無効な応答の後にメニューを繰り返す方法はありますか? (申し訳ありませんが、私はこのbashについては少し初心者です。

0
Chad Wright