Add TLDR app
parent
d679fc5d20
commit
4f66995c69
@ -0,0 +1 @@
|
||||
Ported to pi-apps by Raspberry Pi News on youtube, made by the community at https://github.com/tldr-pages/tldr
|
@ -0,0 +1,7 @@
|
||||
The tldr project is a collection of community-maintained help pages for command-line tools, that aims to be a simpler, more approachable complement to traditional man pages.
|
||||
|
||||
Run it by typing "tldr <command>" into terminal.
|
||||
|
||||
Maybe you are new to the command-line world? Or just a little rusty? Or perhaps you can't always remember the arguments to lsof, or tar?
|
||||
|
||||
It also is more digestable than man pages which blasts pages of useless stuff at you every time you use it.
|
Binary file not shown.
After Width: | Height: | Size: 4.0 KiB |
Binary file not shown.
After Width: | Height: | Size: 5.6 KiB |
@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
||||
|
||||
function error {
|
||||
echo -e "\\e[91m$1\\e[39m"
|
||||
exit 1
|
||||
}
|
||||
|
||||
cd ~/Downloads
|
||||
|
||||
wget https://cdn.discordapp.com/attachments/741857430195142668/774969741981777930/tldr
|
||||
sudo mv tldr /usr/bin/
|
||||
sudo chmod +x /usr/bin/tldr
|
||||
tldr --update
|
@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
|
||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
||||
|
||||
function error {
|
||||
echo -e "\\e[91m$1\\e[39m"
|
||||
exit 1
|
||||
}
|
||||
|
||||
tldr --clear-cache
|
||||
sudo rm /usr/bin/tldr
|
@ -0,0 +1 @@
|
||||
https://github.com/dbrgn/tealdeer
|
Loading…
Reference in New Issue