Ubuntu 24.04.1 LTS | Lataa ja asenna | Tutustu yhteisöön | Blogi | Yritysten tarjoamat palvelutUusimmat julkaisut: 24.04.1 LTS (suositeltu, 29.8.2024) ja 24.10 - Ubuntun 20-vuotisjulkaisu! (10.10.2024).
#!/bin/bashdate >> tulostuswho >> tulostusuptime >> tulostuscat tulostus
on varmasti juu...
#!/bin/bashdate | tee -a tulostuswho | tee -a tulostusuptime | tee -a tulostus
Koodia: [Valitse]#!/bin/bashdate | tee -a tulostuswho | tee -a tulostusuptime | tee -a tulostusTää on vähän lyhyempi muttei sen yksinkertaisempi
#!/bin/bash(date; who; uptime) | tee -a tulostus
alias tiedot='date|tee -a tulostus&&who|tee -a tulostus&&uptime|tee -a tulostus'
tiedot
Väänsin noista samantien aliaksen
alias tiedot='(date; who; uptime) | tee -a'