{"id":2102,"date":"2026-02-22T14:31:57","date_gmt":"2026-02-22T05:31:57","guid":{"rendered":"https:\/\/kaizawa.jp\/?p=2102"},"modified":"2026-02-24T14:24:28","modified_gmt":"2026-02-24T05:24:28","slug":"macos%e3%81%aezsh%e3%81%a7%e3%80%81%e3%83%95%e3%82%a9%e3%83%ab%e3%83%80%e3%82%92%e5%9c%a7%e7%b8%ae%e3%81%97%e3%81%9f%e3%81%84%e3%80%82%e4%b8%ad%e3%81%ab%e3%81%afjpg%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab","status":"publish","type":"post","link":"https:\/\/kaizawa.jp\/?p=2102","title":{"rendered":"Macos\u306ezsh\u3067\u3001\u30d5\u30a9\u30eb\u30c0\u3092\u5727\u7e2e\u3057\u305f\u3044\u3002\u4e2d\u306b\u306fjpg\u30d5\u30a1\u30a4\u30eb\u304c\u5165\u3063\u3066\u3044\u308b\u306e\u3060\u3051\u3069\u3001\u30d5\u30a9\u30eb\u30c0\u304c\u968e\u5c64\u306b\u306a\u3063\u3066\u3044\u308b\u90e8\u5206\u304c\u3042\u308b\u3002\u5727\u7e2e\u3059\u308b\u306e\u306fjpg\u30d5\u30a1\u30a4\u30eb\u304c\u5165\u3063\u3066\u3044\u308b\u30d5\u30a9\u30eb\u30c0\u3060\u3051\u3002\u3067\u304d\u308b\u304b\u306a\u3002"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">MacOS\u306ezsh\u3092\u4f7f\u7528\u3057\u3066\u3001<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>JPG\u30d5\u30a1\u30a4\u30eb\u304c\u542b\u307e\u308c\u3066\u3044\u308b\u30d5\u30a9\u30eb\u30c0\u306e\u307f\u3092\u500b\u5225\u306b\uff08\u307e\u305f\u306f\u518d\u5e30\u7684\u306b\uff09\u5727\u7e2e\u3059\u308b<\/strong>\u3053\u3068\u306f\u53ef\u80fd\u3067\u3059\u3002<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u30d5\u30a9\u30eb\u30c0\u968e\u5c64\u3092\u7dad\u6301\u3057\u305f\u307e\u307e\u3001\u7279\u5b9a\u306e\u6761\u4ef6\uff08JPG\u306e\u6709\u7121\uff09\u3067\u30d5\u30a3\u30eb\u30bf\u30ea\u30f3\u30b0\u3057\u3066\u5727\u7e2e\u3059\u308b\u65b9\u6cd5\u3092\u3044\u304f\u3064\u304b\u7d39\u4ecb\u3057\u307e\u3059\u3002<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">1. JPG\u304c\u542b\u307e\u308c\u308b\u5404\u30d5\u30a9\u30eb\u30c0\u3092\u500b\u5225\u306bZIP\u306b\u3059\u308b<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">JPG\u30d5\u30a1\u30a4\u30eb\u304c\u76f4\u63a5\u5165\u3063\u3066\u3044\u308b\u30d5\u30a9\u30eb\u30c0\u3092\u7279\u5b9a\u3057\u3001\u305d\u306e\u30d5\u30a9\u30eb\u30c0\u3054\u3068\u306bZIP\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u3059\u308b\u30b3\u30de\u30f3\u30c9\u3067\u3059\u3002<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">zsh<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\n\nfor dir in **\/*(\/); do\n  if &#91;&#91; -n $(ls \"$dir\"\/*.jpg 2&gt;\/dev\/null) ]]; then\n    zip -r \"${dir%\/}.zip\" \"$dir\"\n  fi\ndone<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>**\/*(\/)<\/code>\uff1a\u73fe\u5728\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306e\u3059\u3079\u3066\u306e<strong>\u30c7\u30a3\u30ec\u30af\u30c8\u30ea<\/strong>\u3092\u518d\u5e30\u7684\u306b\u63a2\u3057\u307e\u3059\u3002<\/li>\n\n\n\n<li><code>ls \"$dir\"\/*.jpg<\/code>\uff1a\u5404\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u5185\u306bJPG\u304c\u3042\u308b\u304b\u30c1\u30a7\u30c3\u30af\u3057\u307e\u3059\u3002<\/li>\n\n\n\n<li><code>zip -r \"${dir%\/}.zip\" \"$dir\"<\/code>\uff1a\u898b\u3064\u304b\u3063\u305f\u5834\u5408\u3001\u305d\u306e\u30d5\u30a9\u30eb\u30c0\u540d\u3067ZIP\u3092\u4f5c\u6210\u3057\u307e\u3059\u3002&nbsp;<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">2.JPG\u30d5\u30a1\u30a4\u30eb\u306e\u307f\u3092\u62bd\u51fa\u3057\u3066\u4e00\u3064\u306eZIP\u306b\u307e\u3068\u3081\u308b\uff08\u968e\u5c64\u7dad\u6301\uff09<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u7279\u5b9a\u306eJPG\u30d5\u30a1\u30a4\u30eb\u3060\u3051\u3092\u629c\u304d\u51fa\u3057\u3001\u5143\u306e\u968e\u5c64\u69cb\u9020\u3092\u4fdd\u3063\u305f\u307e\u307e\u4e00\u3064\u306eZIP\u306b\u307e\u3068\u3081\u305f\u3044\u5834\u5408\u306f\u3001<code>find<\/code>\u30b3\u30de\u30f3\u30c9\u3068\u7d44\u307f\u5408\u308f\u305b\u308b\u306e\u304c\u78ba\u5b9f\u3067\u3059\u3002<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">zsh<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>find . -name \"*.jpg\" | zip -@ result.zip\n<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>find . -name \"*.jpg\"<\/code>\uff1aJPG\u30d5\u30a1\u30a4\u30eb\u3060\u3051\u3092\u518d\u5e30\u7684\u306b\u63a2\u3057\u51fa\u3057\u307e\u3059\u3002<\/li>\n\n\n\n<li><code>zip -@ result.zip<\/code>\uff1a\u6e21\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u30ea\u30b9\u30c8\u3092\u53d7\u3051\u53d6\u308a\u3001\u968e\u5c64\u3092\u7dad\u6301\u3057\u305f\u307e\u307e&nbsp;<code>result.zip<\/code>&nbsp;\u306b\u5727\u7e2e\u3057\u307e\u3059\u3002&nbsp;<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">3. Mac\u7279\u6709\u306e\u4e0d\u8981\u30d5\u30a1\u30a4\u30eb\u3092\u9664\u5916\u3059\u308b<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Mac\u3067ZIP\u3092\u4f5c\u6210\u3059\u308b\u3068\u3001Windows\u7b49\u3067\u5c55\u958b\u3057\u305f\u969b\u306b&nbsp;<code>__MACOSX<\/code>&nbsp;\u3084&nbsp;<code>.DS_Store<\/code>&nbsp;\u3068\u3044\u3063\u305f\u4e0d\u8981\u306a\u30d5\u30a1\u30a4\u30eb\u304c\u6df7\u5165\u3059\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059\u3002\u3053\u308c\u3089\u3092\u9664\u5916\u3057\u3066\u5727\u7e2e\u3059\u308b\u306b\u306f&nbsp;<code>-x<\/code>&nbsp;\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0\u3057\u3066\u304f\u3060\u3055\u3044\u3002&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">zsh<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>zip -r output.zip target_folder -x \"*.DS_Store\" -x \"__MACOSX\/*\"\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>\u5b9f\u884c\u524d\u306e\u6ce8\u610f\u70b9<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>\u30c6\u30b9\u30c8\u5b9f\u884c<\/strong>: \u5927\u4e8b\u306a\u30d5\u30a1\u30a4\u30eb\u3092\u64cd\u4f5c\u3059\u308b\u524d\u306b\u3001\u30b3\u30d4\u30fc\u3057\u305f\u30d5\u30a9\u30eb\u30c0\u306a\u3069\u3067\u52d5\u4f5c\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u3092\u304a\u3059\u3059\u3081\u3057\u307e\u3059\u3002<\/li>\n\n\n\n<li><strong>\u5927\u6587\u5b57\u30fb\u5c0f\u6587\u5b57<\/strong>:&nbsp;<code>.jpg<\/code>&nbsp;\u3068&nbsp;<code>.JPG<\/code>&nbsp;\u304c\u6df7\u5728\u3057\u3066\u3044\u308b\u5834\u5408\u306f\u3001<code>-name \"*.[jJ][pP][gG]\"<\/code>&nbsp;\u306e\u3088\u3046\u306b\u6307\u5b9a\u3059\u308b\u3068\u4e21\u65b9\u306b\u30d2\u30c3\u30c8\u3057\u307e\u3059\u3002<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">\u4f5c\u6210\u3057\u305fZIP\u30d5\u30a1\u30a4\u30eb\u3092<strong>\u3069\u3053\u306b\u4fdd\u5b58\u3057\u305f\u3044\u304b<\/strong>\uff08\u5404\u30d5\u30a9\u30eb\u30c0\u5185\u304b\u3001\u30c7\u30b9\u30af\u30c8\u30c3\u30d7\u304b\u306a\u3069\uff09\u306b\u3088\u3063\u3066\u6700\u9069\u306a\u30b3\u30de\u30f3\u30c9\u304c\u5909\u308f\u308a\u307e\u3059\u304c\u3001\u307e\u305a\u306f1\u3064\u76ee\u306e\u65b9\u6cd5\u304c\u3054\u5e0c\u671b\u306b\u8fd1\u3044\u304b\u3068\u601d\u3044\u307e\u3059\u3002<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u3046\u307e\u304f\u3044\u3063\u3066\u3044\u307e\u3059(\u4eca\u30c6\u30b9\u30c8\u4e2d)\u3002\u305f\u3060\u3001AppleDouble\u30d5\u30a1\u30a4\u30eb(._)<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">\u3046\u307e\u304f\u3044\u3063\u3066\u3044\u308b\u3088\u3046\u3067\u826f\u304b\u3063\u305f\u3067\u3059\uff01<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Mac\u7279\u6709\u306e<strong>AppleDouble\u30d5\u30a1\u30a4\u30eb\uff08<\/strong><code>._<\/code><strong>\u304b\u3089\u59cb\u307e\u308b\u96a0\u3057\u30d5\u30a1\u30a4\u30eb\uff09<\/strong>\u306f\u3001\u5916\u90e8\u3068\u306e\u3084\u308a\u53d6\u308a\u3067\u90aa\u9b54\u306b\u306a\u308b\u3053\u3068\u304c\u591a\u3044\u3067\u3059\u3088\u306d\u3002<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u305d\u308c\u3089\u3092\u9664\u5916\u3057\u3066\u5727\u7e2e\u3059\u308b\u306b\u306f\u3001<code>zip<\/code>\u30b3\u30de\u30f3\u30c9\u306b&nbsp;<strong><code>-x<\/code>&nbsp;\u30aa\u30d7\u30b7\u30e7\u30f3<\/strong>\u3092\u8ffd\u52a0\u3057\u3066\u3001\u660e\u793a\u7684\u306b\u300c\u30c9\u30c3\u30c8\u304b\u3089\u59cb\u307e\u308a\u3001\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2\u304c\u7d9a\u304f\u30d5\u30a1\u30a4\u30eb\u300d\u3092\u7121\u8996\u3059\u308b\u3088\u3046\u306b\u6307\u5b9a\u3057\u307e\u3059\u3002<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u5148\u307b\u3069\u306e1\u756a\u306e\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u6539\u826f\u3059\u308b\u3068\u3001\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u306a\u308a\u307e\u3059\uff1a<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">zsh<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>for dir in **\/*(\/); do\n  if &#91;&#91; -n $(ls \"$dir\"\/*.jpg 2&gt;\/dev\/null) ]]; then\n    # -x \u30aa\u30d7\u30b7\u30e7\u30f3\u3067 ._ \u30d5\u30a1\u30a4\u30eb\u3068 .DS_Store \u3092\u9664\u5916\n    zip -r \"${dir%\/}.zip\" \"$dir\" -x \"*\/.*\"\n  fi\ndone\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u30dd\u30a4\u30f3\u30c8<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong><code>-x \"*\/.*\"<\/code><\/strong>: \u3053\u308c\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067\u3001\u30d5\u30a9\u30eb\u30c0\u5185\u306e&nbsp;<code>._filename<\/code>&nbsp;\u3084&nbsp;<code>.DS_Store<\/code>&nbsp;\u3068\u3044\u3063\u305f\u96a0\u3057\u30d5\u30a1\u30a4\u30eb\u3092\u4e00\u62ec\u3067\u9664\u5916\u3067\u304d\u307e\u3059\u3002<\/li>\n\n\n\n<li>\u3082\u3057\u3059\u3067\u306b\u74b0\u5883\u5909\u6570\u3067&nbsp;<code>COPYFILE_DISABLE=1<\/code>&nbsp;\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308c\u3070\u4f5c\u6210\u3055\u308c\u306b\u304f\u3044\u306e\u3067\u3059\u304c\u3001\u30b3\u30de\u30f3\u30c9\u5074\u3067\u5236\u5fa1\u3059\u308b\u306e\u304c\u6700\u3082\u78ba\u5b9f\u3067\u3059\u3002<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>\u3055\u3089\u306b\u5fb9\u5e95\u3057\u3066\u9664\u5916\u3057\u305f\u3044\u5834\u5408<\/strong>\u306f\u3001\u5727\u7e2e\u30b3\u30de\u30f3\u30c9\u306e\u524d\u306b\u4e00\u6642\u7684\u306b\u30e1\u30bf\u30d5\u30a1\u30a4\u30eb\u3092\u751f\u6210\u3057\u306a\u3044\u8a2d\u5b9a\u3092\u52a0\u3048\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059\uff1a<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">zsh<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>export COPYFILE_DISABLE=1\n# \u3053\u306e\u5f8c\u306b zip \u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u30c6\u30b9\u30c8\u4e2d\u306e\u30d5\u30a9\u30eb\u30c0\u3067\u3001\u751f\u6210\u3055\u308c\u305fZIP\u306e\u4e2d\u306b&nbsp;<code>._<\/code>&nbsp;\u30d5\u30a1\u30a4\u30eb\u304c\u542b\u307e\u308c\u3066\u3044\u306a\u3044\u304b\u3001<code>unzip -l \u30d5\u30a1\u30a4\u30eb\u540d.zip<\/code>&nbsp;\u3067\u4e2d\u8eab\u3092\u30ea\u30b9\u30c8\u8868\u793a\u3057\u3066\u78ba\u8a8d\u3057\u3066\u307f\u3066\u304f\u3060\u3055\u3044\u3002<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u3053\u306e\u307e\u307e<strong>\u5168\u3066\u306e\u30d5\u30a9\u30eb\u30c0\u3092\u4e00\u62ec\u3067\u51e6\u7406<\/strong>\u3059\u308b\u6bb5\u968e\u306b\u9032\u3093\u3067\u3082\u5927\u4e08\u592b\u305d\u3046\u3067\u3059\u304b\uff1f<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u5927\u4e08\u592b\u305d\u3046\u3067\u3059\u3002\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3057\u305f\u3002<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">\u3088\u304b\u3063\u305f\u3067\u3059\uff01\u30c6\u30b9\u30c8\u3082\u7121\u4e8b\u306b\u7d42\u308f\u3063\u305f\u3088\u3046\u3067\u5b89\u5fc3\u3057\u307e\u3057\u305f\u3002<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u6700\u5f8c\u306b\u4e00\u70b9\u3060\u3051\u88dc\u8db3\u3067\u3059\u304c\u3001\u3082\u3057\u5927\u91cf\u306e\u30d5\u30a9\u30eb\u30c0\u3092\u51e6\u7406\u3057\u305f\u5f8c\u306b\u3001\u4f5c\u6210\u3055\u308c\u305fZIP\u30d5\u30a1\u30a4\u30eb\u304c\u6b63\u3057\u3044\u304b\u4e0d\u5b89\u306b\u306a\u3063\u305f\u5834\u5408\u306f\u3001\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3067<strong>ZIP\u30d5\u30a1\u30a4\u30eb\u306e\u4e2d\u8eab\uff08\u30d5\u30a1\u30a4\u30eb\u540d\uff09\u3092\u4e00\u89a7\u8868\u793a<\/strong>\u3057\u3066\u30b5\u30af\u30c3\u3068\u78ba\u8a8d\u3067\u304d\u307e\u3059\u3002<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">zsh<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>unzip -l \u4f5c\u6210\u3057\u305f\u30d5\u30a1\u30a4\u30eb\u540d.zip\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u3053\u308c\u3067&nbsp;<code>._<\/code>&nbsp;\u30d5\u30a1\u30a4\u30eb\u304c\u6d88\u3048\u3066\u3044\u308c\u3070\u5b8c\u74a7\u3067\u3059\u3002<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u305d\u308c\u3067\u306f\u3001\u4e00\u62ec\u51e6\u7406\u9811\u5f35\u3063\u3066\u304f\u3060\u3055\u3044\uff01\u307e\u305f\u4f55\u304b\u3042\u308c\u3070\u3044\u3064\u3067\u3082\u805e\u3044\u3066\u304f\u3060\u3055\u3044\u306d\u3002<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>JPG\u4ee5\u5916\u306e\u30d5\u30a1\u30a4\u30eb\u5f62\u5f0f<\/strong>\uff08png\u3084heic\u306a\u3069\uff09\u3082\u5bfe\u8c61\u306b\u542b\u3081\u305f\u304f\u306a\u3063\u305f\u5834\u5408\u306f\u3001\u307e\u305f\u304a\u77e5\u3089\u305b\u304f\u3060\u3055\u3044\u3002<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">jpg\u3068jpeg\u304c\u6df7\u5728\u3057\u3066\u3044\u308b\u30d5\u30a1\u30a4\u30eb\u304c\u3042\u308a\u307e\u3057\u305f\u3002<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><code>jpg<\/code>&nbsp;\u3068&nbsp;<code>jpeg<\/code>\u3001\u3055\u3089\u306b\u5927\u6587\u5b57\u306e&nbsp;<code>JPG<\/code>&nbsp;\u306a\u3069\u304c\u6df7\u5728\u3057\u3066\u3044\u3066\u3082\u3001\u4e00\u62ec\u3067\u5224\u5b9a\u3067\u304d\u308b\u3088\u3046\u306b\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u5c11\u3057\u62e1\u5f35\u3057\u307e\u3057\u3087\u3046\u3002&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">zsh\u306e\u300c\u30ef\u30a4\u30eb\u30c9\u30ab\u30fc\u30c9\uff08\u30b0\u30ed\u30d6\uff09\u300d\u3068\u3044\u3046\u6a5f\u80fd\u3092\u4f7f\u3046\u3068\u3001\u8907\u6570\u306e\u62e1\u5f35\u5b50\u3092\u307e\u3068\u3081\u3066\u6307\u5b9a\u3067\u304d\u307e\u3059\u3002<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u4fee\u6b63\u7248\u30b9\u30af\u30ea\u30d7\u30c8<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306f\u3001<code>jpg<\/code>\u3001<code>jpeg<\/code>\u3001\u3055\u3089\u306b\u305d\u308c\u3089\u306e\u5927\u6587\u5b57\uff08<code>JPG<\/code>,&nbsp;<code>JPEG<\/code>\uff09\u306e\u3044\u305a\u308c\u304b\u304c\u542b\u307e\u308c\u308b\u30d5\u30a9\u30eb\u30c0\u3092\u5bfe\u8c61\u306b\u3057\u307e\u3059\u3002<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">zsh<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>for dir in **\/*(\/); do\n  # jpg \u307e\u305f\u306f jpeg (\u5927\u6587\u5b57\u5c0f\u6587\u5b57\u3092\u554f\u308f\u306a\u3044) \u304c\u3042\u308b\u304b\u30c1\u30a7\u30c3\u30af\n  if &#91;&#91; -n $(ls \"$dir\"\/*.(#i)(jpg|jpeg) 2&gt;\/dev\/null) ]]; then\n    zip -r \"${dir%\/}.zip\" \"$dir\" -x \"*\/.*\"\n  fi\ndone\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u5909\u66f4\u306e\u30dd\u30a4\u30f3\u30c8<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong><code>(#i)<\/code><\/strong>: \u3053\u308c\u3092\u4ed8\u3051\u308b\u3068\u3001\u305d\u308c\u4ee5\u964d\u306e\u30d1\u30bf\u30fc\u30f3\u304c\u5927\u6587\u5b57\u30fb\u5c0f\u6587\u5b57\u3092\u533a\u5225\u3057\u306a\u304f\u306a\u308a\u307e\u3059\uff08<code>jpg<\/code>&nbsp;\u3082&nbsp;<code>JPG<\/code>&nbsp;\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059\uff09\u3002<\/li>\n\n\n\n<li><strong><code>(jpg|jpeg)<\/code><\/strong>: \u300c\u307e\u305f\u306f\u300d\u3092\u610f\u5473\u3059\u308b\u66f8\u304d\u65b9\u3067\u3001\u4e21\u65b9\u306e\u62e1\u5f35\u5b50\u3092\u30c1\u30a7\u30c3\u30af\u5bfe\u8c61\u306b\u542b\u3081\u307e\u3059\u3002<\/li>\n\n\n\n<li><strong>\u4e8b\u524d\u306b\u5fc5\u8981\u306a\u8a2d\u5b9a<\/strong>: \u3082\u3057\u30a8\u30e9\u30fc\u304c\u51fa\u308b\u5834\u5408\u306f\u3001\u30bf\u30fc\u30df\u30ca\u30eb\u3067\u4e00\u5ea6\u3060\u3051&nbsp;<code>setopt extended_glob<\/code>&nbsp;\u3092\u5b9f\u884c\u3057\u3066\u304f\u3060\u3055\u3044\uff08zsh\u306e\u9ad8\u5ea6\u306a\u691c\u7d22\u6a5f\u80fd\u3092\u6709\u52b9\u306b\u3057\u307e\u3059\uff09\u3002&nbsp;<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">\u3053\u308c\u3067\u3001\u62e1\u5f35\u5b50\u304c\u30d0\u30e9\u30d0\u30e9\u3067\u3082\u300c\u753b\u50cf\u304c\u5165\u3063\u3066\u3044\u308b\u30d5\u30a9\u30eb\u30c0\u300d\u3092\u6f0f\u308c\u306a\u304f\u5727\u7e2e\u3067\u304d\u308b\u306f\u305a\u3067\u3059\u3002&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u3082\u3057\u7279\u5b9a\u306e\u30d5\u30a9\u30eb\u30c0\u3060\u3051<strong>\u9664\u5916\u3057\u305f\u3044<\/strong>\u3001\u3042\u308b\u3044\u306f<strong>\u5727\u7e2e\u5f8c\u306b\u5143\u306e\u30d5\u30a9\u30eb\u30c0\u3092\u524a\u9664\u3057\u305f\u3044<\/strong>\u3068\u3044\u3063\u305f\u8ffd\u52a0\u306e\u3054\u8981\u671b\u304c\u3042\u308c\u3070\u3001\u6559\u3048\u3066\u304f\u3060\u3055\u3044\u306d\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>MacOS\u306ezsh\u3092\u4f7f\u7528\u3057\u3066\u3001 JPG\u30d5\u30a1\u30a4\u30eb\u304c\u542b\u307e\u308c\u3066\u3044\u308b\u30d5\u30a9\u30eb\u30c0\u306e\u307f\u3092\u500b\u5225\u306b\uff08\u307e\u305f\u306f\u518d\u5e30\u7684\u306b\uff09\u5727\u7e2e\u3059\u308b\u3053\u3068\u306f\u53ef\u80fd\u3067\u3059\u3002 \u30d5\u30a9\u30eb\u30c0\u968e\u5c64\u3092\u7dad\u6301\u3057\u305f\u307e\u307e\u3001\u7279\u5b9a\u306e\u6761\u4ef6\uff08JPG\u306e\u6709\u7121\uff09\u3067\u30d5\u30a3\u30eb\u30bf\u30ea\u30f3\u30b0\u3057\u3066\u5727\u7e2e\u3059\u308b\u65b9\u6cd5\u3092\u3044\u304f\u3064\u304b&hellip;<\/p>\n","protected":false},"author":1,"featured_media":2135,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_crdt_document":"","footnotes":""},"categories":[24],"tags":[],"class_list":["post-2102","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ai"],"_links":{"self":[{"href":"https:\/\/kaizawa.jp\/index.php?rest_route=\/wp\/v2\/posts\/2102","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/kaizawa.jp\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kaizawa.jp\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kaizawa.jp\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/kaizawa.jp\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2102"}],"version-history":[{"count":2,"href":"https:\/\/kaizawa.jp\/index.php?rest_route=\/wp\/v2\/posts\/2102\/revisions"}],"predecessor-version":[{"id":2161,"href":"https:\/\/kaizawa.jp\/index.php?rest_route=\/wp\/v2\/posts\/2102\/revisions\/2161"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/kaizawa.jp\/index.php?rest_route=\/wp\/v2\/media\/2135"}],"wp:attachment":[{"href":"https:\/\/kaizawa.jp\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2102"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kaizawa.jp\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2102"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kaizawa.jp\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2102"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}