rev 命令详解

| 选择喜欢的代码风格  

A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

rev 命令安装:


-bash: rev: command not found

#Debian
apt-get install util-linux

#Ubuntu
apt-get install util-linux

#Alpine
apk add util-linux

#Arch Linux
pacman -S util-linux

#Kali Linux
apt-get install util-linux

#CentOS
yum install util-linux

#Fedora
dnf install util-linux

#OS X
brew install util-linux

#Raspbian
apt-get install util-linux

#Docker
docker run cmd.cat/rev rev

rev 命令补充说明:


rev 命令用来反转一行文本。

rev 命令语法:


rev [options] [file ...]

rev 命令选项:


-V, --version  输出版本信息并退出
-h, --help     输出帮助信息并退出

rev 命令实例:


rev 反转文本字符串 hello

echo "hello" | rev

rev 反转整个文件并打印到 stdout

rev file

rev 命令扩展阅读:




rev 命令评论