openSUSE:Backports:SLE-15-SP4 Backports for SLE-15-SP4 Backports for SLE-15-SP4 https://download.opensuse.org/repositories/openSUSE:/Backports:/SLE-15-SP4/step/ openSUSE:Backports:SLE-15-SP4:Checks Checks for Backports for SLE-15-SP4 Checks for Backports for SLE-15-SP4 https://download.opensuse.org/repositories/openSUSE:/Backports:/SLE-15-SP4:/Checks/step/ openSUSE:Step:15-SP4 openSUSE Step 15-SP4 This projects provides a fork of SUSE SLE 15-SP4. It rebuilds the sources including maintenance updates. The main purpose is to enable non-SLE hardware architectures like armv7l. https://download.opensuse.org/repositories/openSUSE:/Step:/15-SP4/standard/ SUSE:SLE-15-SP4:GA https://download.opensuse.org/repositories/SUSE:/SLE-15-SP4:/GA/config/ openSUSE:Step:15-SP3 openSUSE Step 15-SP3 This projects provides a fork of SUSE SLE 15-SP3. It rebuilds the sources including maintenance updates. The main purpose is to enable non-SLE hardware architectures like armv7l. https://download.opensuse.org/repositories/openSUSE:/Step:/15-SP3/standard/ SUSE:SLE-15-SP3:Update SLE 15 SP3 SLE 15 SP3 https://download.opensuse.org/repositories/SUSE:/SLE-15-SP3:/Update/config/ SUSE:SLE-15-SP3:GA https://download.opensuse.org/repositories/SUSE:/SLE-15-SP3:/GA/config/ openSUSE:Step:15-SP2 openSUSE Step 15-SP2 This projects provides a fork of SUSE SLE 15-SP2. It rebuilds the sources including maintenance updates. The main purpose is to enable non-SLE hardware architectures like armv7l. https://download.opensuse.org/repositories/openSUSE:/Step:/15-SP2/standard/ SUSE:SLE-15-SP2:Update SLE 15 SP2 SLE 15 SP2 https://download.opensuse.org/repositories/SUSE:/SLE-15-SP2:/Update/config/ SUSE:SLE-15-SP2:GA SLE 15 SP2 SLE 15 SP2 https://download.opensuse.org/repositories/SUSE:/SLE-15-SP2:/GA/config/ openSUSE:Step:15-SP1 openSUSE Step 15-SP1 This projects provides a fork of SUSE SLE 15-SP1. It rebuilds the sources including maintenance updates. The main purpose is to enable non-SLE hardware architectures like armv7l. https://download.opensuse.org/repositories/openSUSE:/Step:/15-SP1/standard/ SUSE:SLE-15-SP1:Update SLE 15 SP1 SLE 15 SP1 https://download.opensuse.org/repositories/SUSE:/SLE-15-SP1:/Update/config/ SUSE:SLE-15-SP1:GA SLE 15 SP1 SLE 15 SP1 https://download.opensuse.org/repositories/SUSE:/SLE-15-SP1:/GA/config/ openSUSE:Step:15 openSUSE Step 15 This projects provides a community rebuilt of SUSE SLE 15 from sources. It rebuilds the sources including released SLES maintenance updates. The main purpose is to enable non-SLE hardware architectures like armv7l. https://download.opensuse.org/repositories/openSUSE:/Step:/15/standard/ SUSE:SLE-15:Update SLE 15 SLE 15 https://download.opensuse.org/repositories/SUSE:/SLE-15:/Update/config/ SUSE:SLE-15:GA SLE 15 SLE 15 https://download.opensuse.org/repositories/SUSE:/SLE-15:/GA/config/ perl-IO-Tee Multiplex output to multiple output handles 'IO::Tee' objects can be used to multiplex input and output in two different ways. The first way is to multiplex output to zero or more output handles. The 'IO::Tee' constructor, given a list of output handles, returns a tied handle that can be written to. When written to (using print or printf), the 'IO::Tee' object multiplexes the output to the list of handles originally passed to the constructor. As a shortcut, you can also directly pass a string or an array reference to the constructor, in which case 'IO::File::new' is called for you with the specified argument or arguments. The second way is to multiplex input from one input handle to zero or more output handles as it is being read. The 'IO::Tee' constructor, given an input handle followed by a list of output handles, returns a tied handle that can be read from as well as written to. When written to, the 'IO::Tee' object multiplexes the output to all handles passed to the constructor, as described in the previous paragraph. When read from, the 'IO::Tee' object reads from the input handle given as the first argument to the 'IO::Tee' constructor, then writes any data read to the output handles given as the remaining arguments to the constructor. The 'IO::Tee' class supports certain 'IO::Handle' and 'IO::File' methods related to input and output. In particular, the following methods will iterate themselves over all handles associated with the 'IO::Tee' object, and return TRUE indicating success if and only if all associated handles returned TRUE indicating success: * close * truncate * write * syswrite * format_write * formline * fcntl * ioctl * flush * clearerr * seek The following methods perform input multiplexing as described above: * read * sysread * readline * getc * gets * eof * getline * getlines The following methods can be used to set (but not retrieve) the current values of output-related state variables on all associated handles: * autoflush * output_field_separator * output_record_separator * format_page_number * format_lines_per_page * format_lines_left * format_name * format_top_name * format_line_break_characters * format_formfeed The following methods are directly passed on to the input handle given as the first argument to the 'IO::Tee' constructor: * input_record_separator * input_line_number Note that the return value of input multiplexing methods (such as 'print') is always the return value of the input action, not the return value of subsequent output actions. In particular, no error is indicated by the return value if the input action itself succeeds but subsequent output multiplexing fails.