Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
illvart committed Nov 23, 2020
1 parent 597b41e commit 13288c0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
20 changes: 11 additions & 9 deletions setup-termux-alpine
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
## Copyright (c) 2020 illvart
## https://github.com/illvart/termux-alpine
##
## Licensed under GPL-3.0 https://github.com/illvart/termux-alpine/blob/master/LICENSE
## Licensed under GPL-3.0 https://github.com/illvart/termux-alpine/blob/main/LICENSE
##
set -Eeuo pipefail
source "utils.sh"

PROGRAM_NAME="$0"
PROGRAM_VERSION="1.0.4"
PROGRAM_VERSION="1.0.5"

## Executable distro name
EXEC_NAME="termux-alpine"
Expand Down Expand Up @@ -224,8 +224,9 @@ function create_bashrc() {
alias e='exit'
alias c='clear'
alias r='reset'
alias la='ls -A' # show hidden files
alias l.='ls -d .*' # show only hidden files
alias la='ls -A' # show hidden
alias l.='ls -d .*' # show only hidden
alias ll='ls -CF' # show hidden prefix
alias l='ls -lathF' # sort by newest
alias L='ls -latrhF' # sort by oldest
alias lc='ls -lcr' # sort by change time
Expand Down Expand Up @@ -422,11 +423,12 @@ function add_welcome() {
Community: https://alpinelinux.org/community
Working with packages:
* Search packages: apk search <query>
* Install a package: apk add <package>
* Remove a package: apk del <package>
* Update database: apk update
* Upgrade packages: apk upgrade
* Search packages: apk search <query>
* Install a package: apk add <package>
* Remove a package: apk del <package>
* Update database: apk update
* Upgrade packages: apk upgrade
* Installed packages: apk list --installed
Use apk --help --verbose for a full command listing.
Expand Down
2 changes: 1 addition & 1 deletion utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Copyright (c) 2020 illvart
## https://github.com/illvart/termux-alpine
##
## Licensed under GPL-3.0 https://github.com/illvart/termux-alpine/blob/master/LICENSE
## Licensed under GPL-3.0 https://github.com/illvart/termux-alpine/blob/main/LICENSE
##
set -Eeuo pipefail

Expand Down

0 comments on commit 13288c0

Please sign in to comment.