5PDXNCBBHM3UXTGZNX76FUMWUHBL6BGB7MFBXFGVN5TJECMBYUJAC
PPVF6CAUFB6GIKSYLQ2IYIOPSRRNNBQUG5CLXJDMO6PRD23M4F3AC
FTI67CGF4MMPDFA6YJN6UKOADQLFAECKGYPTWSPSALVQK76BJMJAC
F2QYIRKBFYFWSTB7Z5CNGSZVYI6XQO3MHPUHJLBHPGLIOG7UNVNQC
MIIKFTYUUN5UC74HIC5SMCPAWU7ZYOHWANZLCPWREKSPD4UE65JQC
/// Disable fancy formatting #[structopt(long)] no_format: bool,
/// Disable fancy formatting
#[structopt(long)]
no_format: bool,
table.set_content_arrangement(comfy_table::ContentArrangement::Dynamic);
if !args.no_format { table.set_content_arrangement(comfy_table::ContentArrangement::Dynamic); }
if !args.no_format {
}
row.push(entry.command.trim().to_string());
row.push(format_command(entry.command, args.no_format));
fn format_command(command: String, no_format: bool) -> String { if no_format { command.trim().replace("\n", "\\n") } else { command.trim().to_string() }}
fn format_command(command: String, no_format: bool) -> String {
if no_format {
command.trim().replace("\n", "\\n")
} else {
command.trim().to_string()