CMD
# Show a list of the commands entered since you started the session
history
# Replay any command using ! followed by the number, for example:
!10
# Replay the last command
!!# See installed packages
nix-env -q
# Install packages
nix-env -iAbasename "/Users/nikivi/Documents/books/Thinking, fast and slow.pdf" # => Thinking, fast and slow.pdf# All users can read and write but cannot execute
chmod 666
# All actions for all users
chmod 777
# Only owner can do all actions; group and other users are allowed only to read
chmod 744Last updated