Browse Source

Fix application names with dashes

master
Maxim Likhachev 6 years ago
parent
commit
f4dc9efb5f
  1. 9
      README.md
  2. 2
      scripts/doc.sh

9
README.md

@ -34,10 +34,13 @@ $ make @@ -34,10 +34,13 @@ $ make
- ~~[mdcat](https://github.com/lunaryorn/mdcat) - Show markdown documents on text terminals.~~
- ~~[osquery](https://osquery.io) - SQL powered operating system instrumentation and analytics.~~
- ~~[timing](https://timingapp.com/) - 💰 Time tracker for MacOS.~~
- [android-file-transfer](https://www.android.com/filetransfer/) - Android File Transfer.
- [ansible](https://www.ansible.com/) - Automate deployment, configuration, and upgrading.
- [bat](https://github.com/sharkdp/bat) - Clone of cat(1) with syntax highlighting and Git integration.
- [brave-browser](https://brave.com/) - Brave web browser.
- [coreutils](https://www.gnu.org/software/coreutils) - GNU File, Shell, and Text utilities.
- [curl](https://curl.haxx.se/) - Get a file from an HTTP, HTTPS or FTP server.
- [devdocs-macos](https://github.com/egoist/devdocs-desktop) - A full-featured desktop app for DevDocs.io.
- [dfc](https://projects.gw-computing.net/projects/dfc) - Display graphs and colors of file system space/usage.
- [dive](https://github.com/wagoodman/dive) - Tool for exploring each layer in a docker image.
- [docker](https://www.docker.com/) - Pack, ship and run any application as a lightweight container.
@ -46,8 +49,10 @@ $ make @@ -46,8 +49,10 @@ $ make
- [firefox](https://www.mozilla.org/ru/firefox/) - Mozilla Firefox.
- [gawk](https://www.gnu.org/software/gawk/) - GNU awk utility.
- [git](https://git-scm.com) - Distributed revision control system.
- [git-cal](https://github.com/k4rthik/git-cal) - GitHub-like contributions calendar but on the command-line.
- [go](https://golang.org) - Programming language to build simple/reliable/efficient software.
- [hadolint](https://github.com/hadolint/hadolint) - Smarter Dockerfile linter to validate best practices.
- [haskell-stack](https://haskellstack.org/) - The Haskell Tool Stack.
- [hlint](https://github.com/ndmitchell/hlint) - Haskell source code suggestions.
- [hstr](https://github.com/dvorka/hstr) - Bash and zsh history suggest box.
- [htop](https://hisham.hm/htop/) - Improved top (interactive process viewer).
@ -61,11 +66,14 @@ $ make @@ -61,11 +66,14 @@ $ make
- [nativefier](https://github.com/jiahaog/nativefier) - Wrap web apps natively.
- [neovim](https://neovim.io/) - Ambitious Vim-fork focused on extensibility and agility.
- [nnn](https://github.com/jarun/nnn) - Tiny, lightning fast, feature-packed file manager.
- [ntfs-3g](https://www.tuxera.com/community/open-source-ntfs-3g/) - Read-write NTFS driver for FUSE.
- [osxfuse](https://osxfuse.github.io/) - FUSE for MacOS.
- [polar-bookshelf](https://getpolarized.io/) - Document manager for web pages, textbooks, PDFs, etc.
- [qlcolorcode](https://github.com/anthonygelibert/QLColorCode) - QuickLook plugin for source code with syntax highlighting.
- [qlmarkdown](https://github.com/toland/qlmarkdown) - QuickLook generator for Markdown files.
- [qlstephen](https://whomwah.github.io/qlstephen/) - QuickLook plugin to view plain text files without a file extension.
- [qlvideo](https://github.com/Marginal/QLVideo) - QuickLook plugin to preview video files.
- [quicklook-json](http://www.sagtau.com/quicklookjson.html) - QuickLook plugin to preview JSON files.
- [ripgrep](https://github.com/BurntSushi/ripgrep) - Search tool like grep and The Silver Searcher.
- [rlwrap](https://github.com/hanslub42/rlwrap) - Readline wrapper: adds readline support to tools that lack it. Dependency of cheat.sh.
- [shellcheck](https://www.shellcheck.net/) - Static analysis and lint tool, for (ba)sh scripts.
@ -80,6 +88,7 @@ $ make @@ -80,6 +88,7 @@ $ make
- [vlc](https://www.videolan.org/vlc/) - VLC media player.
- [webpquicklook](https://github.com/emin/WebPQuickLook) - QuickLook plugin for WebP image files.
- [wget](https://www.gnu.org/software/wget/) - Internet file retriever.
- [xmind-zen](https://www.xmind.net/zen/) - Mind-mapping tool.
- [xnviewmp](https://www.xnview.com/) - Image viewer.

2
scripts/doc.sh

@ -17,7 +17,7 @@ description() { @@ -17,7 +17,7 @@ description() {
printf -- "- %s[%s](%s) - %s%s\n" "$marks" "$app_name" "$app_page" "$app_dscr" "$marks"
}
MACOS_APPS=$(grep -E '^\s*(#\s)?-\s+[^:-]+\s+#\s*http.+$' "$MACOS_FILE" \
MACOS_APPS=$(grep -E '^\s*(#\s)?-\s+[^:]+\s+#\s*http.+$' "$MACOS_FILE" \
| expand \
| sort \
| sed -E 's/[[:space:]]+/ /g; s/^[[:space:]]*//'

Loading…
Cancel
Save