AssociateX | blackace, oh, didn't think of that thank you |
igli | AssociateX: don't use cat so much; grep USE /etc/make.conf works |
AssociateX | cat /etc/make.conf|grep USE | tr ' ' '\n' | sort -u | tr '\n' ' ' |
AlefBet | Is there a way I can tell layman to install a local XML list of overlays? |
AssociateX | that worked |
bug169566 | Hi, I seem to be having some issues compiling unixODBC-2.2.11, it dies in unixODBC-2.2.11/libltdl when it tries to run ./libtool However it generates this file on it's own, so I can't patch it... |
igli | yeuch |
blackace | useless use of cat |
AlefBet | The one on the server appears to be broken. |
igli | blackace: :D |
klingon | I have a bit of a dilema.. |
moreon | blackace: bah, I was trying to find a more elegant solution than tr ' ' '\n' :P so far I was at: grep USE /etc/make.conf | cut -d\" -f2 | couldn't figure out a specific tool that made the spaces newlines :P gotta be something! :) |
action | zambaroo sets phasers on stun |
zambaroo | sets phasers on stun |
purplepenguin | gentoo |
zlin | AssociateX: echo "$( . /etc/make.conf && echo ${USE} )" | tr ' ' '\n' | sort -u | tr '\n' ' ' |
klingon | I cant boot gentoo livecd without specifying nosata.. but my hd is sata.. |
purplepenguin | it's linux |
inhalant | yayy! |
purplepenguin | but awesomer |
inhalant | KDE finally runs |
klingon | KDE rules |
purplepenguin | KDE++ |
igli | moreon: you answered your own q i think |
bug169566 | klingon: Might I suggest grabbing another CD based distro, like knoppix, and trying to install from within it instead? It's almost the same process once you're inside of a terminal. |
moreon | igli: well, in make.conf USE flags could be separated by tabs, too. |
AssociateX | zlin, yeah, that worked even better |
moreon | igli: I wanted a tool that made any whitespace non-newline into a newline :P |
igli | moreon: i think tr can transliterate multiple chars |
klingon | bug169566, ah I never thought of that. |
moreon | igli: ahh, true. It probably is the most ideal :) |
igli | better to get the line and make it into an array |
Adlai | moreon, why don't you just replace every whitespace with a newline then newlines would get replaced with newlines which is not a problem |
zlin | moreon: tr '[\t ]' '\n' |
igli | multi-line as well sorry grep only gets first line |
blackace | (. /etc/make.conf; newuse=( $(echo -e "${USE// /\\n}" | sort -u) ); echo "${newuse[@]}") |
kj_synack | hi all... anyone can help me to "remap" FN key with CTRL ? |
moreon | fine blackace. you win. |