Bug List: (This bug is not in your last search results)   Show last search results      Search page      Enter new bug
Bug#: 22
Alias:
Product:
Component:
Status: RESOLVED
Resolution: FIXED
Assigned To: Daniel Robbins (RETIRED) <drobbins@gentoo.org>
Hardware:
OS:
Version:
Priority:
Severity:
Reporter: Michael Tartsch <gentoo@vamos.de>
Add CC:
CC:
URL:
Summary:
Status Whiteboard:
Keywords:

Filename Description Type Creator Created Size Actions
Create a New Attachment (proposed patch, testcase, etc.) View All

Bug 22 depends on: Show dependency tree
Bug 22 blocks:
Votes: 0    Show votes for this bug    Vote for this bug

Additional Comments: (this is where you put emerge --info)


Not eligible to see or edit group visibility for this bug.






View Bug Activity   |   Format For Printing   |   XML   |   Clone This Bug


Description:   Opened: 2002-01-04 19:11 0000
lesspipe.sh seems to come from portage pack.
right ?

less xxx.tar.bz2
does not work 
like
less xxx.tar.gz

source of the problem is probably the order in 
lesspipe case 
instruction

  *.bz2) bzip2 -dc $1 2>/dev/null ;;
  *.tar) tar tvvf $1 2>/dev/null ;;
  
*.tar.bz2) tar tjvvf $1 2>/dev/null ;;
  *.tbz2) tar tjvvf $1 2>/dev/null ;;
  ..
  *.z) gzip -dc 
$1  2>/dev/null ;;
  *.Z) gzip -dc $1  2>/dev/null ;;
  *.tar.z) tar tzvvf $1 2>/dev/null ;;
  
*.tar.Z) tar tzvvf $1 2>/dev/null ;;

 should be 
  *.tar.bz2) tar tjvvf $1 2>/dev/null ;;
  
*.bz2) bzip2 -dc $1 2>/dev/null ;;
  *.tar) tar tvvf $1 2>/dev/null ;;
  *.tbz2) tar tjvvf $1 
2>/dev/null ;;
  ..
  *.tar.z) tar tzvvf $1 2>/dev/null ;;
  *.tar.Z) tar tzvvf $1 2>/dev/null 
;;
  *.z) gzip -dc $1  2>/dev/null ;;
  *.Z) gzip -dc $1  2>/dev/null ;;

Bug List: (This bug is not in your last search results)   Show last search results      Search page      Enter new bug