-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapt-url
More file actions
executable file
·34 lines (28 loc) · 761 Bytes
/
apt-url
File metadata and controls
executable file
·34 lines (28 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/bash
# https://github.com/leitao/apt-url/blob/master/apt-url
#
# Apt-url: Shows the URL of a package
#
# Copyright (C) 2017 Breno Leitao <leitao@debian.org>, IBM
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version
# 2 of the License, or (at your option) any later version.
FETCH=/usr/lib/apt-move/fetch
which sudo && SUDO=$(which sudo) || SUDO=
# Cleaning the downloaded files
$SUDO apt-get clean
if [ ! -f $FETCH ]
then
echo 'Please install apt-move, as:'
echo ' # apt-get install apt-move'
exit 2
fi;
if [ -z "$1" ]
then
echo 'Usage:'
echo ' ' $0 '<package>'
exit 1
fi
$SUDO $FETCH -t $1 | tail -n 1