This file contains hidden or 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
#!/bin/sh | |
opkg list-upgradable | cut -d " " -f1 | xargs -r opkg upgrade |
This file contains hidden or 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
#!/bin/bash | |
LIBS_ZIP_URL="https://www.scummvm.org/frs/build/scummvm-ios7-libs.zip" | |
LIBS_ZIP_FILENAME="scummvm-libs.zip" | |
GIT_REPO_URL="https://github.com/scummvm/scummvm.git" | |
# Clone the repository | |
git clone "$GIT_REPO_URL" | |
# Compile create_project | |
(cd scummvm/devtools/create_project/xcode; xcodebuild) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
#!/bin/sh | |
ls *.part*01.rar -1 | head -n 1 | xargs -n 1 -r unrar x -P | |
# synology nas version | |
ls *.part*01.rar -1 | head -n 1 | /usr/bin/xargs -n 1 -r unrar x -P |
This file contains hidden or 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
#!/bin/sh | |
ls -l /Applications | tr -s ' ' | cut -d ' ' -f9 | paste -s -d' ' |
This file contains hidden or 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
#!/bin/sh | |
npm i -g $(ncu -g | tr -s ' ' | cut -d ' ' -f2 | paste -s -d' ') |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.