首页 > 系统相关 >linux base64编码、解码

linux base64编码、解码

时间:2022-10-02 10:01:33浏览次数:47  
标签:编码 解码 base64 echo file linux 字符串


base64编码解码
base64编码
base64 file
功能:从指定的文件file中读取数据,编码为base64的字符串然后输出;

echo “string” | base64
功能:将字符串string+换行编码为base64的字符串然后输出;

echo -n “string” | base64
功能:将字符串string编码为base64的字符串然后输出;

base64解码
base64 -d file
功能:从指定的文件file中读取已经过base64编码的数据,然后进行解码,并输出解码后的字符串;

echo “str” | base64 -d
功能:对base64编码的字符串str和空行进行解码,然后将解码后的字符串输出;

echo -n “str” | base -d
功能:对base64编码的字符串str进行解码,然后将解码后的字符串输出;

标签:编码,解码,base64,echo,file,linux,字符串
From: https://blog.51cto.com/u_12482901/5729218

相关文章

  • Linux: Why should text files should end with a newline
       wc-l willnotcountafinal"line"ifitdoesn'tendwithanewline. Becauseafile(orstream)ofzerolinescanbedistinguishedfromafileo......
  • Linux常用命令-find
    简介:find-searchforfilesinadirectoryhierarchyfind[-H][-L][-P][-Ddebugopts][-Olevel][starting-point...][expression]#pathname: find命令所查找......
  • Linux上如何挂载EMC DataDomain BoostFS存储到本地目录
    Alwayskeepemptypartitionsatbothendsofthepartitionrange.Keepthepartitionsatbothendstoguaranteethatthepartitionsplitandthepartitionmerge......
  • linux启动某一个服务后,服务的某个文件所在的目录下出现类似:systemd-private.xxxxxx的
      如标题所示的情况关闭方法:找到此行后的service服务的名称,找到配置文件 PrivateTmp=true 表示给服务分配独立的临时空间 改为图中的false,然后执行 syste......
  • 搭建漏洞环境及实战——在Linux系统中安装LANMP
    LANMP是Linux下Apache、Nginx、mysql和php的应用环境演示的是WDLinux命令:wgethttp://dl.wdlinux.cn/files/lamp_v3.tar.gz从ApacheZooKeeper上下载了ApacheZooKeepe......
  • Linux系统CentOS6找回密码解决方法
    1、首先在开机启动的时候快速按键盘上的“E”键或者“ESC”键,会进入如下界面,按E键: 2、出现下面这个界面,选择第二项以kernel开头,再次按“E”键: 3、经过第二步,这个画......
  • 《Unix/Linux系统编程》学习笔记5
    第十一章EXT2文件系统一.知识点归纳(一)EXT2文件系统数据结构1.通过mkfs创建虚拟磁盘在Linux下,命令mke2fs[-bblksize-Nninodes]devicenblocks在设备上创建......
  • Linux 串口编程
    1代码#include<stdio.h>#include<stdlib.h>#include<unistd.h>#include<sys/types.h>#include<sys/stat.h>#include<fcntl.h>#include<termios.h>#include......
  • linux usb端点
    前言端点在实际的USB通讯过程种的具体作用与含义十分重要,但是有些难以理解,自己整理一些知识作为备忘。(注:1、文中的EP表示Endpoint;一、端点概念。端点(Endpoint),是主机与......
  • Linux时间日期类
    Linux时间日期类date指令:显示当前日期基本语法date功能描述:显示当前时间date+%Y功能描述:显示当前年份date+%m功能描述:显示当前月份date+%d功能描述:......