Unix & Linux

9
EOF inattendu et erreur de syntaxe

J'écris actuellement mon troisième script shell et j'ai rencontré un problème. Voici mon script jusqu'à présent: #!/bin/bash echo "choose one of the following options : \ 1) display all current users \ 2) list all files \ 3) show calendar \ 4) exit script" while read do case in 1) who;; 2) ls -a;;...

9
Priorité de && vs & dans bash et zsh

En répondant à cette question, j'ai découvert une différence très drôle (et subtile) entre le comportement dans bashet zsh: Dans bash: romano@RRyS:~$ pwd /home/romano romano@RRyS:~$ alias x="cd /bin && ./echo A >/dev/null &" romano@RRyS:~$ x [1] 16611 romano@RRyS:~$ pwd /home/romano...

9
Piping bash string manipulation

J'ai lu d'autres questions sur la manipulation de chaînes bash de piping mais elles semblent être des applications spécialisées. Essentiellement, existe-t-il un moyen de faire le plus simple ci-dessous? au lieu de $ string='hello world'; string2="${string// /_}"; echo "${string2^^}" HELLO_WORLD...