Scottfield Road, line 62 admin@i-03219d2552e98cd10:~/clmystery/mystery$ cat sus | awk -F'\t' '{print $4}' | while read LINE;do echo $LINE;done Trident Street, line 330 Plainfield Street, line 275 Fairfax Street, line 107 Shepard Court, line 214 Selkirk Road, line 232 Avila Road, line 210 Whitcomb Avenue, line 120 Farmington Road, line 417 Webber Street, line 329 Maple Avenue, line 354 Yeoman Street, line 177 President Road, line 294 Blanche Street, line 78 Corbet Street, line 400 Gorham Street, line 295 Stoughton Street, line 301 Scottfield Road, line 62 admin@i-03219d2552e98cd10:~/clmystery/mystery$ cat sus | awk -F'\t' '{print $4}' | while read LINE;do echo $LINE | cut -d"," -f1;done Trident Street Plainfield Street Fairfax Street Shepard Court Selkirk Road Avila Road Whitcomb Avenue Farmington Road Webber Street Maple Avenue Yeoman Street President Road Blanche Street Corbet Street Gorham Street Stoughton Street Scottfield Road admin@i-03219d2552e98cd10:~/clmystery/mystery$ cat sus | awk -F'\t' '{print $4}' | while read LINE;do echo $LINE | cut -d"," -f1;done
command-line-murders/i-03219d2552e98cd10
by SadServersMore by SadServers
drwx------ 5 root root 4096 Nov 1 12:56 . drwxr-xr-x 18 root root 4096 Nov 1 12:54 .. -rw-r--r-- 1 root root 571 Apr 10 2021 .bashrc drwxr-xr-x 3 root root 4096 Nov 1 12:56 .config drwx------ 5 root root 4096 Nov 1 12:56 .mc -rw-r--r-- 1 root root 161 Jul 9 2019 .profile drwx------ 2 root root 4096 Sep 17 16:44 .ssh --wxrw--wT 1 root root 984 Sep 17 17:16 mc.sh root@i-065b0b4396750e734:~# cat .config/ cat: .config/: Is a directory root@i-065b0b4396750e734:~# cd .config/ root@i-065b0b4396750e734:~/.config# ls asciinema root@i-065b0b4396750e734:~/.config# cat asciinema/install-id a8958cd1-8249-4f60-9b73-4859fccd1f47root@i-065b0b4396750e734:~/.config#
kihei/i-065b0b4396750e734 02:07
by SadServersgzip -c file1 file2 > foo.gz If you want to recompress concatenated files to get better compression, d gzip -cd old.gz | gzip > new.gz If a compressed file consists of several members, the uncompressed size a the --list option applies to the last member only. If you need the unco members, you can use: gzip -cd file.gz | wc -c If you wish to create a single archive file with multiple members so that Manual page gzip(1) line 187 (press h for help or q to quit)