Logs: freenode/#xmonad
| 2021-04-20 20:48:32 | × | toniz4 quits (~toniz4@unaffiliated/toniz4) (Client Quit) |
| 2021-04-20 20:48:45 | → | toniz4 joins (~toniz4@unaffiliated/toniz4) |
| 2021-04-20 20:52:06 | → | geekosaur joins (930099da@rrcs-147-0-153-218.central.biz.rr.com) |
| 2021-04-20 21:10:05 | × | geekosaur quits (930099da@rrcs-147-0-153-218.central.biz.rr.com) (Quit: Connection closed) |
| 2021-04-20 21:10:23 | → | geekosaur joins (930099da@rrcs-147-0-153-218.central.biz.rr.com) |
| 2021-04-20 21:13:00 | × | kelnoky quits (~shao@ip1f128ba7.dynamic.kabel-deutschland.de) (Quit: WeeChat 3.1) |
| 2021-04-20 21:17:24 | × | geekosaur quits (930099da@rrcs-147-0-153-218.central.biz.rr.com) (Quit: Connection closed) |
| 2021-04-20 21:17:41 | → | geekosaur joins (930099da@rrcs-147-0-153-218.central.biz.rr.com) |
| 2021-04-20 21:18:34 | × | toniz4 quits (~toniz4@unaffiliated/toniz4) (Quit: leaving) |
| 2021-04-20 21:24:52 | × | s00pcan quits (~chris@107.181.165.217) (Ping timeout: 240 seconds) |
| 2021-04-20 21:26:56 | → | s00pcan joins (~chris@075-133-056-178.res.spectrum.com) |
| 2021-04-20 22:03:03 | × | seschwar quits (~seschwar@unaffiliated/seschwar) (Quit: :wq) |
| 2021-04-20 22:07:10 | × | piele quits (~piele@tbonesteak.creativeserver.net) (Quit: No Ping reply in 180 seconds.) |
| 2021-04-20 22:08:13 | → | piele joins (~piele@tbonesteak.creativeserver.net) |
| 2021-04-20 22:21:04 | × | notis quits (~notis@185.51.134.230) (Read error: Connection reset by peer) |
| 2021-04-20 23:02:15 | × | thc202 quits (~thc202@unaffiliated/thc202) (Ping timeout: 258 seconds) |
| 2021-04-20 23:29:59 | → | RomanticDel joins (~brtt@2600:8804:8744:9f00::738a) |
| 2021-04-20 23:30:25 | <RomanticDel> | could i add like any $PATH to my .bashrc or should that go in bash_profile? |
| 2021-04-20 23:31:33 | <geekosaur> | normally it'd be in .bash_profile so subshells created by environment managers can override it (e.g. to point to a sandboxed version of python or something) |
| 2021-04-20 23:33:30 | <RomanticDel> | okay just wanted to check b/c im thinking of adding ~/doom.d/bin/doom to my $PATH to easily update my emacs |
| 2021-04-20 23:36:49 | × | RomanticDel quits (~brtt@2600:8804:8744:9f00::738a) (Quit: WeeChat 3.1) |
| 2021-04-20 23:38:49 | → | RomanticDel joins (~brtt@2600:8804:8744:9f00::738a) |
| 2021-04-20 23:48:41 | <geekosaur> | you may need to make sure terminal windows start "login shells" (most do) |
| 2021-04-20 23:53:33 | × | RomanticDel quits (~brtt@2600:8804:8744:9f00::738a) (Quit: WeeChat 3.1) |
| 2021-04-20 23:56:59 | → | RomanticDel joins (~brtt@2600:8804:8744:9f00::738a) |
| 2021-04-21 00:02:43 | × | RomanticDel quits (~brtt@2600:8804:8744:9f00::738a) (Quit: WeeChat 3.1) |
| 2021-04-21 00:08:54 | → | gzj joins (~gzj@unaffiliated/gzj) |
| 2021-04-21 00:08:55 | → | GZJ0X_ joins (~gzj@unaffiliated/gzj) |
| 2021-04-21 00:08:55 | × | GZJ0X_ quits (~gzj@unaffiliated/gzj) (Remote host closed the connection) |
| 2021-04-21 00:16:11 | → | RomanticDel joins (~brtt@2600:8804:8744:9f00::738a) |
| 2021-04-21 00:16:46 | <RomanticDel> | okay not sure why but one of my new bash aliases wont work. |
| 2021-04-21 00:16:57 | <RomanticDel> | every single other one does but not this one |
| 2021-04-21 00:24:51 | <geekosaur> | "doesn't work" how? |
| 2021-04-21 00:25:26 | <RomanticDel> | when i type it into the terminal to have it execute said command, it gives back a syntax error |
| 2021-04-21 00:26:06 | × | gzj quits (~gzj@unaffiliated/gzj) (Remote host closed the connection) |
| 2021-04-21 00:26:25 | → | gzj joins (~gzj@unaffiliated/gzj) |
| 2021-04-21 00:27:19 | <geekosaur> | what's the alias? |
| 2021-04-21 00:27:43 | <RomanticDel> | alias clean='sudo pacamn -Rns (pacman -Qtdq)' |
| 2021-04-21 00:28:15 | <RomanticDel> | every time i try to run that though, it says syntax error about unexpected token near '(' |
| 2021-04-21 00:28:25 | <geekosaur> | that does indeed look like a syntax error. did you intend to execute the parenthesized command? |
| 2021-04-21 00:28:31 | <RomanticDel> | yes |
| 2021-04-21 00:28:32 | <geekosaur> | that's $(command) |
| 2021-04-21 00:29:00 | <RomanticDel> | alias clean='sudo pacamn -Rns $(pacman -Qtdq)' -- So like that? |
| 2021-04-21 00:29:11 | <geekosaur> | yes |
| 2021-04-21 00:29:19 | <RomanticDel> | will it run that command as root? |
| 2021-04-21 00:30:17 | <geekosaur> | no |
| 2021-04-21 00:31:09 | <RomanticDel> | alias clean='sudo pacamn -Rns #(pacman -Qtdq)' -- would that run everything as root? |
| 2021-04-21 00:31:22 | <geekosaur> | no |
| 2021-04-21 00:32:23 | <geekosaur> | alias clean='sudo -s "pacman -Rns \$(pacman -Qtdq)"' |
| 2021-04-21 00:33:30 | <geekosaur> | the backslash is to prevent your shell from executing the command expansion first, the -s ensures that sudo starts a shell that can run the command expansion |
| 2021-04-21 00:37:25 | <geekosaur> | I would want to test that by substituting echo for the outer pacman command just to make sure it's doing the right thing, given that it's running as root |
| 2021-04-21 00:51:33 | × | s00pcan quits (~chris@075-133-056-178.res.spectrum.com) (Ping timeout: 265 seconds) |
| 2021-04-21 00:53:06 | → | s00pcan joins (~chris@107.181.165.217) |
| 2021-04-21 00:59:11 | × | s00pcan quits (~chris@107.181.165.217) (Ping timeout: 252 seconds) |
| 2021-04-21 00:59:42 | × | geekosaur quits (930099da@rrcs-147-0-153-218.central.biz.rr.com) (Ping timeout: 240 seconds) |
| 2021-04-21 01:00:15 | → | s00pcan joins (~chris@075-133-056-178.res.spectrum.com) |
| 2021-04-21 01:03:48 | × | RomanticDel quits (~brtt@2600:8804:8744:9f00::738a) (Quit: WeeChat 3.1) |
| 2021-04-21 01:13:44 | × | Nahra quits (~user@unaffiliated/nahra) (Remote host closed the connection) |
| 2021-04-21 01:49:06 | × | gzj quits (~gzj@unaffiliated/gzj) (Remote host closed the connection) |
| 2021-04-21 01:49:25 | → | gzj joins (~gzj@unaffiliated/gzj) |
| 2021-04-21 02:24:49 | × | gzj quits (~gzj@unaffiliated/gzj) (Ping timeout: 252 seconds) |
| 2021-04-21 02:39:41 | × | theDon quits (~td@muedsl-82-207-238-085.citykom.de) (Ping timeout: 240 seconds) |
| 2021-04-21 02:40:49 | × | growpotkin quits (~growpotki@130-45-30-154.dyn.grandenetworks.net) (Quit: ZNC 1.8.2 - https://znc.in) |
| 2021-04-21 02:41:30 | → | theDon joins (~td@94.134.91.185) |
| 2021-04-21 03:16:23 | × | ericsagnes quits (~ericsagne@2405:6580:0:5100:7cd:23d4:b32c:5140) (Ping timeout: 260 seconds) |
| 2021-04-21 03:27:36 | → | ericsagnes joins (~ericsagne@2405:6580:0:5100:ee94:8f2c:d91b:ec) |
| 2021-04-21 04:05:11 | × | linuxguru quits (~linuxguru@2607:fea8:d660:468e::3) (Quit: WeeChat 3.1) |
| 2021-04-21 04:47:49 | → | abhixec joins (~abhixec@c-67-169-139-16.hsd1.ca.comcast.net) |
| 2021-04-21 05:10:08 | → | ChubaDuba joins (~ChubaDuba@5.3.233.85) |
| 2021-04-21 05:24:23 | → | toniz4 joins (~toniz4@unaffiliated/toniz4) |
| 2021-04-21 05:33:48 | × | toniz4 quits (~toniz4@unaffiliated/toniz4) (Quit: leaving) |
| 2021-04-21 05:35:01 | → | toniz4 joins (~toniz4@unaffiliated/toniz4) |
| 2021-04-21 05:36:14 | × | toniz4 quits (~toniz4@unaffiliated/toniz4) (Client Quit) |
| 2021-04-21 05:36:29 | → | toniz4 joins (~toniz4@unaffiliated/toniz4) |
| 2021-04-21 05:37:52 | × | toniz4 quits (~toniz4@unaffiliated/toniz4) (Client Quit) |
| 2021-04-21 05:38:08 | → | toniz4 joins (~toniz4@unaffiliated/toniz4) |
| 2021-04-21 05:54:53 | × | toniz4 quits (~toniz4@unaffiliated/toniz4) (Quit: leaving) |
| 2021-04-21 05:56:37 | × | xaltsc quits (~xaltsc@unaffiliated/xaltsc) (Ping timeout: 245 seconds) |
| 2021-04-21 05:57:09 | → | xaltsc joins (~xaltsc@unaffiliated/xaltsc) |
| 2021-04-21 05:57:51 | × | jackhill quits (~jackhill@marsh.hcoop.net) (Ping timeout: 245 seconds) |
| 2021-04-21 05:58:07 | → | jackhill joins (~jackhill@marsh.hcoop.net) |
| 2021-04-21 06:02:56 | → | thc202 joins (~thc202@unaffiliated/thc202) |
| 2021-04-21 06:13:06 | → | wonko7 joins (~wonko7@62.115.229.50) |
| 2021-04-21 06:16:50 | × | PotatoGim quits (sid99505@gateway/web/irccloud.com/x-tcgdsfioetpoitie) (Ping timeout: 245 seconds) |
| 2021-04-21 06:18:53 | → | PotatoGim joins (sid99505@gateway/web/irccloud.com/x-qrihjhvmnnmtnggm) |
| 2021-04-21 07:02:31 | × | ChubaDuba quits (~ChubaDuba@5.3.233.85) (Quit: WeeChat 1.6) |
| 2021-04-21 07:18:45 | → | idhugo__ joins (~idhugo@87-49-147-45-mobile.dk.customer.tdc.net) |
| 2021-04-21 07:21:14 | → | idhugo_ joins (~idhugo@87-49-45-4-mobile.dk.customer.tdc.net) |
| 2021-04-21 07:23:32 | × | idhugo__ quits (~idhugo@87-49-147-45-mobile.dk.customer.tdc.net) (Ping timeout: 240 seconds) |
| 2021-04-21 07:46:23 | → | materiyolo joins (~materiyol@112.204.174.249) |
| 2021-04-21 08:01:31 | × | evanjs quits (~evanjs@075-129-098-007.res.spectrum.com) (Read error: Connection reset by peer) |
| 2021-04-21 08:03:10 | → | cfricke joins (~cfricke@unaffiliated/cfricke) |
| 2021-04-21 08:03:18 | → | evanjs joins (~evanjs@075-129-098-007.res.spectrum.com) |
| 2021-04-21 08:10:37 | → | Nahra joins (~user@unaffiliated/nahra) |
| 2021-04-21 08:36:17 | → | idhugo__ joins (~idhugo@87-49-147-45-mobile.dk.customer.tdc.net) |
| 2021-04-21 08:38:41 | × | idhugo_ quits (~idhugo@87-49-45-4-mobile.dk.customer.tdc.net) (Ping timeout: 245 seconds) |
| 2021-04-21 08:49:57 | → | notis joins (~notis@185.51.134.230) |
| 2021-04-21 09:08:13 | <MrElendig> | might want to pipe instead to avoid argmax |
| 2021-04-21 09:13:31 | → | sagax joins (~sagax_nb@213.138.71.146) |
| 2021-04-21 09:44:14 | × | sagax quits (~sagax_nb@213.138.71.146) (Ping timeout: 252 seconds) |
All times are in UTC.