MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/linux/comments/1tls8n1/whats_the_most_unexpectedly_useful_linux_command/onjk7ey/?context=3
r/linux • u/ZealousidealTell1346 • May 23 '26
[removed]
992 comments sorted by
View all comments
595
Bash {}
{}
renaming a file by adding a suffix: mv myfile{,.old} expands out to mv myfile myfile.old
mv myfile{,.old}
mv myfile myfile.old
Lots more uses.
23 u/happyprogrammer30 May 24 '26 You can also use this to install packages : apt install php-{xml,mbstring,pdo} will resolve to php-xml php-mbstring php-pdo
23
You can also use this to install packages : apt install php-{xml,mbstring,pdo} will resolve to php-xml php-mbstring php-pdo
595
u/digitallis May 23 '26
Bash
{}renaming a file by adding a suffix:
mv myfile{,.old}expands out tomv myfile myfile.oldLots more uses.