say
I accidentally discovered that running say <words to say> on my OS makes a voice say those words out loud. For example: say thats an awfully hot coffee pot
I'm a coder who has worn a lot of hats, from individual contributor to lead engineer to "CTO" (yes, in quotes, make of that what you will!). I've plenty to learn and hopefully some to share as well.
Oldest comments (12)
I'll go first with a simple one:
cd
.cd
stands for "change directory". It accepts a directory as an argument,i.e.
It takes a few other directives such as moving up one directory, moving to root, etc.
Here is a post getting into some of what you can do
The difference between cd - vs cd ~-
Pete Freitag ・ Sep 27 '19 ・ 1 min read
sudo reboot
- fixes all problems, 50% of the timesudo rm -rf /
- Get fired or reinstall OShahahahaaaa dead!
🤣🤣
sudo command
- perform a command as superuserhere are some reasons why not to use it all the time linuxnscripting.com/why-you-should...
here are some best practices of how to set it up properly techglimpse.com/dos-and-donts-of-s...
and here is a somewhat essayish pro/con discussion piece redhat.com/sysadmin/sysadmins-dont...
aws s3 mb s3://dev-community-bucket
Creates an S3 bucket in AWS.
Out of context?
mv command , you can move file/folder placement with it or you can use it for rename.
$ pwd
shows current working directorysay
I accidentally discovered that running
say <words to say>
on my OS makes a voice say those words out loud. For example:say thats an awfully hot coffee pot
Recursively find all files with
thing
in its name!sudo rm -rf /
Just destroy your Linux system easily