Bunset: Difference between revisions

From Scriptwiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 9: Line 9:
  echo -a $bvar(&test,0)
  echo -a $bvar(&test,0)
In this case the first echo will echo "1" as &test is filled with 1 byte, the second echo will echo "0" as &test is unset.
In this case the first echo will echo "1" as &test is filled with 1 byte, the second echo will echo "0" as &test is unset.
[[Category:Binary Files]]
[[Category:Commands]]

Revision as of 18:59, 28 September 2006

The bunset command is used to unset a binary file.

bunset <&binvar> [&binvar &binvar ... &binvar]

This unsets all specified binary files. Unlike unset, bunset doesn't work with wildcards.

Example

bset &test 1 65
echo -a $bvar(&test,0)
bunset &test
echo -a $bvar(&test,0)

In this case the first echo will echo "1" as &test is filled with 1 byte, the second echo will echo "0" as &test is unset.