2019-02-08 bashでディレクトリの置換 shell bash カレントディレクトリでのファイル内パス置換 ../を../../にする find . -type f -print0 | xargs -0 sed -i -e "s/\.\.\//\.\.\/\.\.\//g"