Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
eepm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nurlan
eepm
Commits
aafb696e
Commit
aafb696e
authored
Mar 08, 2020
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
epm: improve help
parent
18dace21
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
44 additions
and
30 deletions
+44
-30
epm
bin/epm
+35
-27
epm-sh-functions
bin/epm-sh-functions
+9
-3
No files found.
bin/epm
View file @
aafb696e
#!/bin/sh
#!/bin/sh
#
#
# Copyright (C) 2012-20
18
Etersoft
# Copyright (C) 2012-20
20
Etersoft
# Copyright (C) 2012-20
18
Vitaly Lipatov <lav@etersoft.ru>
# Copyright (C) 2012-20
20
Vitaly Lipatov <lav@etersoft.ru>
#
#
# This program is free software: you can redistribute it and/or modify
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# it under the terms of the GNU Affero General Public License as published by
...
@@ -55,11 +55,19 @@ phelp()
...
@@ -55,11 +55,19 @@ phelp()
{
{
echo
"
$Descr
echo
"
$Descr
$Usage
$Usage
Commands:
$(
get_help HELPCMD
)
Options:
Options:
$(
get_help HELPOPT
)
$(
get_help HELPOPT
)
Short commands:
$(
get_help HELPSHORT
)
$(
get_help HELPCMD
)
Examples:
$
epmi etckeeper install etckeeper package
$
epmqp lib print out all installed packages with 'lib' in a name
$
epmqf ip print out a package the command 'ip' from is
"
"
}
}
...
@@ -67,7 +75,7 @@ print_version()
...
@@ -67,7 +75,7 @@ print_version()
{
{
echo
"EPM package manager version @VERSION@ https://wiki.etersoft.ru/Epm"
echo
"EPM package manager version @VERSION@ https://wiki.etersoft.ru/Epm"
echo
"Running on
$(
$DISTRVENDOR
-e
)
('
$PMTYPE
' package manager uses '
$PKGFORMAT
' package format)"
echo
"Running on
$(
$DISTRVENDOR
-e
)
('
$PMTYPE
' package manager uses '
$PKGFORMAT
' package format)"
echo
"Copyright (c) Etersoft 2012-20
19
"
echo
"Copyright (c) Etersoft 2012-20
20
"
echo
"This program may be freely redistributed under the terms of the GNU AGPLv3."
echo
"This program may be freely redistributed under the terms of the GNU AGPLv3."
}
}
...
@@ -103,49 +111,49 @@ quoted_args=
...
@@ -103,49 +111,49 @@ quoted_args=
case
$PROGNAME
in
case
$PROGNAME
in
epmi
)
epmi
)
# HELPSHORT: alias for epm install
epm_cmd
=
install
epm_cmd
=
install
;;
;;
epmI
)
epmI
)
# HELPSHORT: alias for epm Install
epm_cmd
=
Install
epm_cmd
=
Install
;;
;;
epme
)
epme
)
# HELPSHORT: alias for epm remove
epm_cmd
=
remove
epm_cmd
=
remove
;;
;;
epmcl
)
epmcl
)
# HELPSHORT: alias for epm changelog
epm_cmd
=
changelog
epm_cmd
=
changelog
;;
;;
epms
)
epms
)
# HELPSHORT: alias for epm search
epm_cmd
=
search
epm_cmd
=
search
;;
;;
epmsf
)
epmsf
)
# HELPSHORT: alias for epm search file
epm_cmd
=
search_file
epm_cmd
=
search_file
;;
;;
epmq
)
epmq
)
# HELPSHORT: alias for epm query
epm_cmd
=
query
epm_cmd
=
query
;;
;;
epmqi
)
epmqi
)
# HELPSHORT: alias for epm info
epm_cmd
=
info
epm_cmd
=
info
;;
;;
epmqf
)
epmqf
)
# HELPSHORT: alias for epm belongs
epm_cmd
=
query_file
epm_cmd
=
query_file
;;
;;
epmqa
)
epmqa
)
# HELPSHORT: alias for epm packages
epm_cmd
=
packages
epm_cmd
=
packages
;;
;;
epmqp
)
epmqp
)
# HELPSHORT: alias for epm qp (epm query package)
epm_cmd
=
query_package
epm_cmd
=
query_package
;;
;;
epmql
)
epmql
)
# HELPSHORT: alias for epm filelist
epm_cmd
=
filelist
epm_cmd
=
filelist
;;
;;
epmrl
)
epmrl
)
# HELPSHORT: alias for epm repo list
epm_cmd
=
repolist
epm_cmd
=
repolist
;;
;;
epmu
)
epmu
)
# HELPSHORT: alias for epm update
epm_cmd
=
update
epm_cmd
=
update
;;
;;
epm|upm|eepm
)
epm|upm|eepm
)
# HELPSHORT: other aliases for epm command
;;
;;
epm.sh
)
epm.sh
)
;;
;;
...
@@ -163,7 +171,7 @@ check_command()
...
@@ -163,7 +171,7 @@ check_command()
# do not override command
# do not override command
[
-z
"
$epm_cmd
"
]
||
return
[
-z
"
$epm_cmd
"
]
||
return
#
Base commands
#
HELPCMD: PART: Base commands:
case
$1
in
case
$1
in
-i
|
install
|
add|i
)
# HELPCMD: install package(s) from remote repositories or from local file
-i
|
install
|
add|i
)
# HELPCMD: install package(s) from remote repositories or from local file
epm_cmd
=
install
epm_cmd
=
install
...
@@ -181,7 +189,7 @@ check_command()
...
@@ -181,7 +189,7 @@ check_command()
epm_cmd
=
query_file
epm_cmd
=
query_file
;;
;;
#
Useful commands
#
HELPCMD: PART: Useful commands:
reinstall
)
# HELPCMD: reinstall package(s) from remote repositories or from local file
reinstall
)
# HELPCMD: reinstall package(s) from remote repositories or from local file
epm_cmd
=
reinstall
epm_cmd
=
reinstall
;;
;;
...
@@ -230,21 +238,21 @@ check_command()
...
@@ -230,21 +238,21 @@ check_command()
programs
)
# HELPCMD: print list of installed GUI program(s) (they have .desktop files)
programs
)
# HELPCMD: print list of installed GUI program(s) (they have .desktop files)
epm_cmd
=
programs
epm_cmd
=
programs
;;
;;
assure
)
# HELPCMD: <command> [package]: install package if command does not exist
assure
)
# HELPCMD: <command> [package]
[version]
: install package if command does not exist
epm_cmd
=
assure
epm_cmd
=
assure
;;
;;
policy|resolve
)
# HELPCMD: print detailed information about the priority selection of package
policy|resolve
)
# HELPCMD: print detailed information about the priority selection of package
epm_cmd
=
policy
epm_cmd
=
policy
;;
;;
#
Repository control
#
HELPCMD: PART: Repository control:
update
)
# HELPCMD: update remote package repository databases
update
)
# HELPCMD: update remote package repository databases
epm_cmd
=
update
epm_cmd
=
update
;;
;;
addrepo|ar
)
# HELPCMD: add package repo (etersoft, autoimports, archive 2017/12/31); run with param to get list
addrepo|ar
)
# HELPCMD: add package repo (etersoft, autoimports, archive 2017/12/31); run with param to get list
epm_cmd
=
addrepo
epm_cmd
=
addrepo
;;
;;
repolist|sl|rl|listrepo
|repo
)
# HELPCMD: print repo list
repolist|sl|rl|listrepo
)
# HELPCMD: print repo list
epm_cmd
=
repolist
epm_cmd
=
repolist
;;
;;
repofix
)
# HELPCMD: fix paths in sources lists (ALT Linux only)
repofix
)
# HELPCMD: fix paths in sources lists (ALT Linux only)
...
@@ -266,7 +274,7 @@ check_command()
...
@@ -266,7 +274,7 @@ check_command()
epm_cmd
=
remove_old_kernels
epm_cmd
=
remove_old_kernels
;;
;;
#
Other commands
#
HELPCMD: PART: Other commands:
clean
)
# HELPCMD: clean local package cache
clean
)
# HELPCMD: clean local package cache
epm_cmd
=
clean
epm_cmd
=
clean
;;
;;
...
...
bin/epm-sh-functions
View file @
aafb696e
...
@@ -451,9 +451,15 @@ get_help()
...
@@ -451,9 +451,15 @@ get_help()
return
return
fi
fi
grep
-v
--
"^#"
$0
|
grep
--
"#
$1
"
|
while
read
-r
n
;
do
cat
$0
|
grep
--
"#
$1
"
|
while
read
-r
n
;
do
opt
=
$(
echo
$n
|
sed
-e
"s|) #
$1
:.*||g"
)
if
echo
"
$n
"
|
grep
-q
"#
$1
: PART: "
;
then
desc
=
$(
echo
$n
|
sed
-e
"s|.*) #
$1
:||g"
)
echo
echo
"
$n
"
|
sed
-e
"s|#
$1
: PART: ||"
continue
fi
echo
"
$n
"
|
grep
-q
"^ *#"
&&
continue
opt
=
"
$(
echo
$n
|
sed
-e
"s|) #
$1
:.*||g"
)
"
#"
desc
=
"
$(
echo
$n
|
sed
-e
"s|.*) #
$1
:||g"
)
"
#"
printf
" %-20s %s
\n
"
$opt
"
$desc
"
printf
" %-20s %s
\n
"
$opt
"
$desc
"
done
done
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment