| Base | Description |
|---|---|
| RV32E | Base 32-bit ISA with 16 registers |
| RV32I | Base 32-bit ISA |
| RV64I | Base 64-bit ISA |
| RV128I | Base 128-bit ISA |
| Extension | Description |
| #!/bin/sh | |
| grep "$@" # execute the grep itself | |
| grep_status="$?" # store its exit status | |
| # suppress the empty selection error indicator (exit status of 1) | |
| if [ "$grep_status" -eq 1 ]; then | |
| grep_status=0 | |
| fi | |
| exit "$grep_status" # exit with the modified exit status |
| #!/bin/sh | |
| if [ "$#" -gt 0 ]; then # if any arguments | |
| shift "$(($# - 1))" # shift to the last one | |
| echo "$1" # print it | |
| fi |
| #!/bin/sh | |
| # show content of the file every second | |
| watch -n 1 cat /proc/interrupts |
| #!/bin/sh | |
| # trace system calls of process and its forks | |
| strace -f -p "$1" 2>&1 # PID should be in $1 |
| #!/bin/sh | |
| # for each system call line, print its line number instead | |
| strace -f -p "$1" 2>&1 | awk '{ print NR }' # PID should be in $1 |
| #!/bin/sh | |
| # $1 - url address of the NFS, $2 - directory to mount | |
| sudo mount -t nfs "$1":/"$2" /mnt/"$2" |
/etc/NetworkManager/conf.d/default-wifi-powersave-on.conf with root permissions.wifi.powersave = 3 with wifi.powersave = 2 and save.Source: https://askubuntu.com/a/1240386
/etc/modprobe.d/alsa-base.conf with root permissions.options snd_hda_intel model=alc255-asus and save.Source: https://forums.linuxmint.com/viewtopic.php?p=1790578#p1790578