Skip to content

Commit

Permalink
small cosmetic and documentation changes
Browse files Browse the repository at this point in the history
  • Loading branch information
wofr06 committed Oct 20, 2024
1 parent a31c37e commit 2c4bdbb
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 17 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -427,10 +427,10 @@ STDOUT and the commands executed to STDERR.

## 12. External links

(last checked: Jan 29 2024):
(last checked: Oct 20 2024):

### 12.1 URLs to some utilities (with last known release)
- 7zz https://sourceforge.net/projects/sevenzip/ (2023)
- 7zz https://sourceforge.net/projects/sevenzip/ (2024)
- 7zr (outdated!) https://sourceforge.net/projects/p7zip/ (2016)
- cabextract https://www.cabextract.org.uk/ (2023)
- catdoc,catppt,xls2csv https://www.wagner.pp.ru/~vitus/software/catdoc/ (2016)
Expand All @@ -440,21 +440,21 @@ STDOUT and the commands executed to STDERR.
- docx2txt https://docx2txt.sourceforge.net/ (2014)
- dvi2tty https://www.ctan.org/tex-archive/dviware/dvi2tty/ (2016)
- excel2csv https://github.com/informationsea/excel2csv (2018)
- html2text https://github.com/grobian/html2text (2023)
- html2text https://github.com/grobian/html2text (2024)
- id3v2 https://id3v2.sourceforge.net/ (2010)
- lzip https://www.nongnu.org/lzip/lzip.html (2024)
- matdump https://sourceforge.net/projects/matio/ (2023)
- mediainfo https://mediaarea.net/MediaInfo/ (2023)
- matdump https://sourceforge.net/projects/matio/ (2024)
- mediainfo https://mediaarea.net/MediaInfo/ (2024)
- odt2txt https://github.com/dstosberg/odt2txt (2017)
- pandoc https://pandoc.org/ (2023)
- pptx2md https://github.com/ssine/pptx2md (2023)
- pandoc https://pandoc.org/ (2024)
- pptx2md https://github.com/ssine/pptx2md (2024)
- tarcolor https://github.com/msabramo/tarcolor (2014)
- archive_color modified version of tarcolor (contained in this package)
- unrtf https://www.gnu.org/software/unrtf/ (2018)
- wvText https://github.com/AbiWord/wv/ (2014)
- xlscat https://metacpan.org/pod/Spreadsheet::Read (2024)
- sxw2txt https://vinc17.net/software/sxw2txt (2010)
- dtc https://git.kernel.org/cgit/utils/dtc/dtc.git (2023)
- dtc https://git.kernel.org/cgit/utils/dtc/dtc.git (2024)
- xmq https://github.com/libxmq/xmq/releases/latest (2024)
- nvimpager https://github.com/lucc/nvimpager (2024)

Expand Down
15 changes: 6 additions & 9 deletions lesscomplete
Original file line number Diff line number Diff line change
Expand Up @@ -80,14 +80,11 @@ show () {
file1="${1%%"$sep"*}"
rest1="${1#"$file1"}"
while [[ "$rest1" == "$sep$sep"* ]]; do
if [[ "$rest1" == "$sep$sep" ]]; then
break
else
rest1="${rest1#"$sep$sep"}"
file1="${rest1%%"$sep"*}"
rest1="${rest1#"$file1"}"
file1="${1%"$rest1"}"
fi
[[ "$rest1" == "$sep$sep" ]] && break
rest1="${rest1#"$sep$sep"}"
file1="${rest1%%"$sep"*}"
rest1="${rest1#"$file1"}"
file1="${1%"$rest1"}"
done
[[ ! -e "$file1" && "$file1" != '-' ]] && exit 1
rest11="${rest1#"$sep"}"
Expand Down Expand Up @@ -285,7 +282,7 @@ isarchive () {
istemp "isoinfo -d -i" "$t"| grep -E '^Joliet' && joliet=J
isoinfo -fR"$joliet" -i "$t" ;;
cpio)
cpio -t --quiet < "$2" ;;
cpio -t --quiet < "$2" ;;
7zz|7za|7zr)
istemp "$prog l" "$2"|grep -E '^[0-9][0-9][0-9[0-9]'|cut -c 54-|grep -Ev ' files$'
esac
Expand Down

0 comments on commit 2c4bdbb

Please sign in to comment.