diff options
author | 2011-05-24 15:44:23 +0800 | |
---|---|---|
committer | 2011-05-24 22:21:39 +0800 | |
commit | 641ff219cc0179165892eee2efaa2b88f3d4bf4c (patch) | |
tree | 7cb1c7065e57d9abf81c212b2b545df281276d59 /utils | |
parent | Parser: support variable appending (diff) | |
download | libbash-641ff219cc0179165892eee2efaa2b88f3d4bf4c.tar.gz libbash-641ff219cc0179165892eee2efaa2b88f3d4bf4c.tar.bz2 libbash-641ff219cc0179165892eee2efaa2b88f3d4bf4c.zip |
Core: support special variable $0
Diffstat (limited to 'utils')
-rw-r--r-- | utils/variable_printer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/variable_printer.cpp b/utils/variable_printer.cpp index 59de74c..4a66d70 100644 --- a/utils/variable_printer.cpp +++ b/utils/variable_printer.cpp @@ -34,7 +34,7 @@ static const std::vector<std::string> special_variables { - "IFS", "?", "*" + "IFS", "?", "*", "0" }; int main(int argc, char** argv) |