Post AyOkVFtMLJmDDVuogy by [email protected] | |
More posts by [email protected] | |
Post #AyOiAHJne0oteS9VQ0 by [email protected] | |
0 likes, 1 repeats | |
Type this `tr ':' '\n' <<<"$PATH"` instead o… | |
Post #AyOkVFtMLJmDDVuogy by [email protected] | |
0 likes, 0 repeats | |
@nixCraft if you use zsh: print -l $path | |
Post #AyOl1WeJZhhYSJGYYC by [email protected] | |
0 likes, 0 repeats | |
@nixCraft Maybe create an alias forπ | |
Post #AyOlMmnmiMPQdLpjIO by [email protected] | |
0 likes, 0 repeats | |
@nixCraft FWIW, the "<<<" notation isn't POSIX, so it fa… | |
Post #AyOmRmdSrQO7WGx8vg by [email protected] | |
0 likes, 0 repeats | |
@gumnos i am getting rusty as I age π | |
Post #AyOmnJ6JLo6OI2i168 by [email protected] | |
0 likes, 0 repeats | |
@nixCraft <<< is not for sh, it's a bash/ksh ism. Just use echo. | |
Post #AyOqsEQiXmnj4HrETQ by [email protected] | |
0 likes, 0 repeats | |
@nixCraft tr ':' '\n' <<<"$PATH" | sortfor u… | |
Post #AyOsCqzD0BnGOVO6LY by [email protected] | |
0 likes, 0 repeats | |
@nixCraft Alternative for zsh:print -l ${(s.:.)PATH} | |
Post #AyOzgpzXxnubfzn4Ea by [email protected] | |
0 likes, 0 repeats | |
@nixCraft I am so old-fashioned:echo ${PATH} | tr ':' '\n' | le… | |
Post #AyPC0IjwV83hn1XU9o by [email protected] | |
0 likes, 0 repeats | |
@nixCraft fish: printf '%s\n' $PATH | |
Post #AyRkjh18s1mCsEJtEu by [email protected] | |
0 likes, 0 repeats | |
@nixCraft but I don't see any rust usage in that command... |