| Anonymous | Login | Signup for a new account | 11-10-2008 11:39 PST |
| Main | My View | View Issues | Change Log | Docs |
| Viewing Issue Simple Details [ Jump to Notes ] | [ View Advanced ] [ Issue History ] [ Print ] | |||||||||||
| ID | Category | Severity | Reproducibility | Date Submitted | Last Update | |||||||
| 0002244 | [BusyBox] Standards Compliance | minor | always | 02-18-08 23:27 | 02-18-08 23:27 | |||||||
| Reporter | vapier | View Status | public | |||||||||
| Assigned To | BusyBox | |||||||||||
| Priority | normal | Resolution | open | |||||||||
| Status | assigned | Product Version | ||||||||||
| Summary | 0002244: msh treats "$@" incorrectly (does not expand/requote) | |||||||||||
| Description | msh treats "$@" like "$*" instead of taking into account its special meaning | |||||||||||
| Additional Information |
this example code: #!/bin/sh for f in "$@" ; do echo "ARG: $f" done for f in $@ ; do echo "unARG: $f" done should output like: $ ./test.sh 1 2 ARG: 1 ARG: 2 unARG: 1 unARG: 2 but instead we get: ARG: 1 2 unARG: 1 unARG: 2 |
|||||||||||
| Attached Files | ||||||||||||
|
|
||||||||||||
| There are no notes attached to this issue. |
Issue History |
|||
| Date Modified | Username | Field | Change |
| 02-18-08 23:27 | vapier | New Issue | |
| 02-18-08 23:27 | vapier | Status | new => assigned |
| 02-18-08 23:27 | vapier | Assigned To | => BusyBox |
| Copyright © 2000 - 2006 Mantis Group |