KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
romulus
★ 8
Open GitHub ↗
a stream editor like sed.
Download README (.md)
Explore Similar Repositories
AVPerception_WS
:
perception system for a experimental autonomous vehicle
Latecomer
:
Apple IIe/IIc demo
spotlight
:
No description available.
Guns
:
:whale2:Guns基于Spring Boot2,致力于做更简洁的后台管理系统。包含系统管理,代码生成,多数据库适配,SSO单点登录,工作流,短信,邮件发送,OAuth2登录,任务调度,持续集成,docker部署等功。支持Spring Cloud Alibaba微服务。社区活跃,版本迭代快,
taro-dva-demo
:
taro 配合 dva 的实践
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
romulus
?
Download (.md)
# Romulus A modern alternative to sed [](https://travis-ci.org/eulegang/romulus) ## Versions Currently while under development I will only be bumping patch versions rather then the normal minor versions until I feel like as if romulus is a somewhat mature release and ready for v1 ## Sample given a executable file parse\_ifconfig such as ``` #! /usr/bin/env romulus -f /^(?P<inter>[a-zA-Z0-9]+): /,/^[a-zA-Z0-9]+:/ { /inet (?P<ip>[0-9]{1,3}(\.[0-9]{1,3}){3})/ { print("${inter}: ${ip}") } } ``` running `ifconfig | parse_ifconfig` should yield your current network interfaces which have ips Running the following prints all the hashes of the docker images that have kube in the name ``` docker images | romulus -e '2,$ & [/kube/, _, hash] print hash' ``` ## Installation Currenty the only supported way to install romulus is to install by source code ``` $ cargo install romulus ``` ## Features When rust programs are compiled a feature list may be passed. ### color On by default. Error messages and other such things use ansi color codes. ### envvar On by default. Preloads all the environmental variables into the base variable stack ### stdin-tty Off by default Allows processing from interactive terminal. ### bind Off by default Allows the use of the bind statement (expirimental). Sets global variable from local variable.