This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog"> | |
<uri name="http://sbr.gov.au/comnmdle/comnmdle.addressdetails3.02.01.module" uri="xsd/sbr.gov.au/taxonomy/sbr_au_taxonomy/comnmdle/comnmdle.addressdetails3.02.01.module.xsd"/> | |
<uri name="http://sbr.gov.au/comnmdle/comnmdle.electroniccontactelectronicmail1.02.00.module" | |
uri="xsd/sbr.gov.au/taxonomy/sbr_au_taxonomy/comnmdle/comnmdle.electroniccontactelectronicmail1.02.00.module.xsd"/> | |
<uri name="http://sbr.gov.au/comnmdle/comnmdle.electroniccontacttelephone1.02.00.module" | |
uri="xsd/sbr.gov.au/taxonomy/sbr_au_taxonomy/comnmdle/comnmdle.electroniccontacttelephone1.02.00.module.xsd"/> | |
<uri name="http://sbr.gov.au/comnmdle/comnmdle.financialinstitutionaccount1.02.00.module" | |
uri="xsd/sbr.gov.au/taxonomy/sbr_au_taxonomy/comnmdle/comnmdle.financialinstitutionaccount1.02.00.module.xsd"/> | |
<uri name="http://sbr.gov.au/comnmdle/comnmdle.organisationname1.02.00.module" uri="xsd/sbr.gov.au/taxonomy/sbr_au_taxonomy/comnmdle/co |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<xbrli:xbrl xmlns:EmpAbn.02.00="http://sbr.gov.au/dims/EmpAbn.02.00.dims" | |
xmlns:RprtPyType.02.07="http://sbr.gov.au/dims/RprtPyType.02.07.dims" | |
xmlns:SprFndAbn.02.00="http://sbr.gov.au/dims/SprFndAbn.02.00.dims" | |
xmlns:SprFndUSI.02.00="http://sbr.gov.au/dims/SprFndUSI.02.00.dims" | |
xmlns:address3.02.01="http://sbr.gov.au/comnmdle/comnmdle.addressdetails3.02.01.module" | |
xmlns:dtyp.02.00="http://sbr.gov.au/fdtn/sbr.02.00.dtyp" | |
xmlns:dtyp.02.01="http://sbr.gov.au/fdtn/sbr.02.01.dtyp" | |
xmlns:dtyp.02.03="http://sbr.gov.au/fdtn/sbr.02.03.dtyp" | |
xmlns:dtyp.02.06="http://sbr.gov.au/fdtn/sbr.02.06.dtyp" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Manual way create a vertical split in GNU screen: | |
# C-a | # Create a vertical split | |
# C-a <Tab> # Move to the split | |
# C-a c # Create a new window within the split | |
# # OR | |
# C-a x # Assign an existing window by number to the split. | |
# This script send commands to a screen session to |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Manual way create a horizontal split in GNU screen: | |
# C-a S # Create a horizontal split | |
# C-a <Tab> # Move to the split | |
# C-a c # Create a new window within the split | |
# # OR | |
# C-a x # Assign an existing window by number to the split. | |
# Save a bit of manual work with a script! |