11 lines
375 B
Bash
11 lines
375 B
Bash
|
#!/bin/sh
|
||
|
cat probing.1 | tee -p abbiefetch
|
||
|
cat system_detection.2 | tee -ap abbiefetch
|
||
|
cat hostname_username.3 | tee -ap abbiefetch
|
||
|
cat processor_detection.4 | tee -ap abbiefetch
|
||
|
cat kernel_info.5 | tee -ap abbiefetch
|
||
|
cat gpu_detection.6 | tee -ap abbiefetch
|
||
|
cat distro_machine_detection.7 | tee -ap abbiefetch
|
||
|
cat display_results.8 | tee -ap abbiefetch
|
||
|
chmod +x abbiefetch
|