6CEULYGBZ5W2OW6WNT4UMZIR5ESTPGZWAHWBN5EXZK2CREIQWZXAC
IA2CJ4HDSST6MPDLX2FVE2ZZR7EP5O6AIAUFGZIMWJ6NODVMKOKAC
5PDXNCBBHM3UXTGZNX76FUMWUHBL6BGB7MFBXFGVN5TJECMBYUJAC
FTI67CGF4MMPDFA6YJN6UKOADQLFAECKGYPTWSPSALVQK76BJMJAC
F2QYIRKBFYFWSTB7Z5CNGSZVYI6XQO3MHPUHJLBHPGLIOG7UNVNQC
AIF5IVL7B5S2X3N4RLS6GNKUCASQZPOH6NCVGECUFHQ5ZUJVDU6QC
/// Show directory in which the command was run #[structopt(long)] show_pwd: bool, /// Show session id for command #[structopt(long)] show_session: bool,
/// Show directory in which the command was run
#[structopt(long)]
show_pwd: bool,
/// Show session id for command
show_session: bool,
let show_pwd = self.default_args.show_pwd; let show_session = self.default_args.show_session;
let show_pwd = self.default_args.show_pwd;
let show_session = self.default_args.show_session;
show_pwd, show_session,
show_pwd,
show_session,
show_pwd: bool, show_session: bool,
if show_session { header.push(Cell::new("ses").add_attribute(Attribute::Bold)); }
if show_session {
header.push(Cell::new("ses").add_attribute(Attribute::Bold));
}
header.push(Cell::new("ses").add_attribute(Attribute::Bold)); header.push(Cell::new("pwd").add_attribute(Attribute::Bold));
header.push(Cell::new("pwd").add_attribute(Attribute::Bold));
if show_pwd { header.push(Cell::new("pwd").add_attribute(Attribute::Bold)); }
if show_pwd {
row.push(format_uuid(entry.session_id)); row.push(format_pwd(&entry.pwd)?);
row.push(format_uuid(entry.session_id));
row.push(format_pwd(&entry.pwd)?);
if show_session { row.push(format_uuid(entry.session_id)); } if show_pwd { row.push(format_pwd(&entry.pwd)?); }