mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-24 12:29:26 +00:00
Replace tee with append redirection
This commit is contained in:
@@ -15,13 +15,13 @@ head -n "${curl_max_line_number}" "src/Curl/Curl.php" | \
|
||||
egrep "^ .* function .*" | \
|
||||
egrep "^ public" | \
|
||||
sort | \
|
||||
perl -pe 's/^ public (.* )?function /Curl::/' | \
|
||||
tee -a "README.md"
|
||||
perl -pe 's/^ public (.* )?function /Curl::/' \
|
||||
>> "README.md"
|
||||
egrep "^ .* function .*" "src/Curl/MultiCurl.php" | \
|
||||
egrep "^ public" | \
|
||||
sort | \
|
||||
perl -pe 's/^ public (.* )?function /MultiCurl::/' | \
|
||||
tee -a "README.md"
|
||||
perl -pe 's/^ public (.* )?function /MultiCurl::/' \
|
||||
>> "README.md"
|
||||
echo '```' >> "README.md"
|
||||
echo >> "README.md"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user