This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ 0.000000] Linux version 4.5.2-1-ARCH (builduser@tobias) (gcc version 5.3.0 (GCC) ) #1 SMP PREEMPT Thu Apr 21 18:21:27 CEST 2016 | |
[ 0.000000] Command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img root=PARTUUID=2ecdafb6-8e1b-496a-a02b-3580ce262e08 rw scsi_mod.use_blk_mq=1 debug=volt=debug | |
[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 | |
[ 0.000000] x86/fpu: xstate_offset[3]: 960, xstate_sizes[3]: 64 | |
[ 0.000000] x86/fpu: xstate_offset[4]: 1024, xstate_sizes[4]: 64 | |
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x01: 'x87 floating point registers' | |
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x02: 'SSE registers' | |
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x04: 'AVX registers' | |
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x08: 'MPX bounds registers' | |
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x10: 'MPX CSR' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
epicabs() { | |
package="$@" | |
fullpath="$(pwd)/$package" | |
if [ -d "$fullpath" ] ; then | |
cd "$fullpath" | |
git pull | |
cd .. |