Created
October 13, 2018 07:44
-
-
Save danil1petrov/d0cd538ff764bbc356b708377601857d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#находим все симлинки из системы | |
find /system -type l | xargs ls -l | |
#копируем их в файл и через блокнот удаляем лишнее из строки (найти ^.*:... и заменить на пустоту) | |
#переделываем из вида "симлинк -> оригинал" в "оригинал -> симлинк" и делаем понятно для рекавери | |
cat symlinks1 | while read var1 var2 var3; do echo "symlink(\"$var3\", \"""$var1\");"; done | |
#находим все оригиналы без пути к ним (после выполнения комманды вручную исправить пути в блокноте) | |
cat symlinks1 | while read var1 var2 var3; do echo $var1 | grep -v "/"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment