1- [ ![ Actions Status] ( https://github.com/raku-community-modules/Shell-Command/actions/workflows/test .yml/badge.svg )] ( https://github.com/raku-community-modules/Shell-Command/actions )
1+ [ ![ Actions Status] ( https://github.com/raku-community-modules/Shell-Command/actions/workflows/linux.yml/badge.svg )] ( https://github.com/raku-community-modules/Shell-Command/actions ) [ ![ Actions Status ] ( https://github.com/raku-community-modules/Shell-Command/actions/workflows/macos.yml/badge.svg )] ( https://github.com/raku-community-modules/Shell-Command/actions ) [ ![ Actions Status ] ( https://github.com/raku-community-modules/Shell-Command/actions/workflows/windows .yml/badge.svg)] ( https://github.com/raku-community-modules/Shell-Command/actions )
22
33NAME
44====
@@ -8,46 +8,41 @@ Shell::Command - provide cross-platform routines emulating common *NIX shell com
88SYNOPSIS
99========
1010
11- use Shell::Command;
11+ ``` raku
12+ use Shell::Command;
1213
13- # Recursive folder copy
14- cp 't/dir1', 't/dir2', :r;
14+ # Recursive folder copy
15+ cp ' t/dir1' , ' t/dir2' , : r;
1516
16- # Remove a file
17- rm_f 'to_delete';
17+ # Remove a file
18+ rm_f ' to_delete' ;
1819
19- # Remove directory
20- rmdir 't/dupa/foo/bar';
20+ # Remove directory
21+ rmdir ' t/dupa/foo/bar' ;
2122
22- # Make path
23- mkpath 't/dir2';
23+ # Make path
24+ mkpath ' t/dir2' ;
2425
25- # Remove path
26- rm_rf 't/dir2';
26+ # Remove path
27+ rm_rf ' t/dir2' ;
2728
28- # Find Raku in executable path
29- my $raku-path = which('raku');
29+ # Find Raku in executable path
30+ my $ raku-path = which(' raku' );
3031
31- # Concatenate the contents of a file or list of files and print to STDOUT
32- cat "file1.txt", "file2.txt";
32+ # Concatenate the contents of a file or list of files and print to STDOUT
33+ cat " file1.txt" , " file2.txt" ;
3334
34- # A cross platfrom syncronous run()
35- my $command = $*DISTRO.is-win ?? 'binary.exe' !! 'binary';
36- run-command($binary, 'some', 'parameter');
35+ # A cross platfrom syncronous run()
36+ my $ command = $ * DISTRO . is-win ?? ' binary.exe' !! ' binary' ;
37+ run-command($ binary , ' some' , ' parameter' );
38+ ```
3739
3840AUTHOR
3941======
4042
41- Tadeusz “tadzik” Sośnierz"
43+ Tadeusz Sośnierz
4244
43- COPYRIGHT AND LICENSE
44- =====================
45-
46- Copyright 2010-2017 Tadeusz Sośnierz Copyright 2023 Raku Community
47-
48- This library is free software; you can redistribute it and/or modify it under the MIT license.
49-
50- Please see the LICENCE file in the distribution
45+ Source can be located at: https://github.com/raku-community-modules/Shell-Command . Comments and Pull Requests are welcome.
5146
5247CONTRIBUTORS
5348============
@@ -70,7 +65,7 @@ CONTRIBUTORS
7065
7166 * Steve Mynott
7267
73- * timo
68+ * Timo Paulssen
7469
7570 * Tobias Leich
7671
@@ -80,3 +75,14 @@ CONTRIBUTORS
8075
8176 * Martin Barth
8277
78+ COPYRIGHT AND LICENSE
79+ =====================
80+
81+ Copyright 2010-2017 Tadeusz Sośnierz
82+
83+ Copyright 2023-2025 Raku Community
84+
85+ This library is free software; you can redistribute it and/or modify it under the MIT license.
86+
87+ Please see the LICENCE file in the distribution
88+
0 commit comments