📄 install
字号:
#!/bin/bash# install all scripts from /tools to /usr/sbin and /usr/lib# so the user is able to use all these commands while running his/her Live Linux## this script is automatically called by runme.sh## Author: does it worth for such a short script ... hm... ok, Tomas Matejicek.#mkdir -p /usr/sbinmkdir -p /usr/libls -aA1b ./tools | egrep -v "^lib" | while read FILE; do cp ./tools/$FILE /usr/sbin; donels -aA1b ./tools | egrep "^lib" | while read FILE; do cp ./tools/$FILE /usr/lib; doneecho "Linux Live scripts were installed successfuly"
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -