pepoとネットワークを語ろう

40年前からこれまでとこれからのネットワークを語る

Linuxで壊れたSymbolic linkを再配置する

2022-02-13 17:26:03 | Linux

LinuxでSymbolic linkが壊れている時に再配置する

一つや二つぐらいは手動で、大量にある場合はやはりスクリプト

# fileコマンドでbrokenをキーワードで壊れたSymbolic linkを削除後に新しいSymbolic linkを張れば良い

# ll faile_file
lrwxrwxrwx 1 root root 7  2月 13 17:20 faile_file -> hdd/ttt
# file faile_file
faile_file: broken symbolic link to hdd/ttt

#!/bin/bash
A=`file *|grep  broken|awk '{sub(":","",$0);print $1}'`
for i in $A;do
  rm ./$i
  ln -s /www/remote-hand/tmp/hdd/opt/iot03f.local/$i ./$i
done


MACでjavascript圧縮にyuicompressorをインストールしたけど

2022-02-13 14:51:03 | Linux

以前はMicrosoft Ajax Minifierでjavascript圧縮してたけど、いよいよWindows10マシンが終末を迎え、普段の開発マシンMACでjavascript圧縮しなければ
なのでyuicompressorをインストール
$ brew install yuicompressor
インストールしたけどパスが通らないみたいなので検索
$ brew ls yuicompressor
/usr/local/Cellar/yuicompressor/2.4.8_1/bin/yuicompressor
/usr/local/Cellar/yuicompressor/2.4.8_1/libexec/yuicompressor-2.4.8.jar
適当な作業場所へコピー
$ cp /usr/local/Cellar/yuicompressor/2.4.8_1/libexec/yuicompressor-2.4.8.jar ~/Documents/
$ java -jar yuicompressor-2.4.8.jar remote-hand_dio.js -o remote-hand_dio.min.js
でようやく圧縮作業完了