code |
LFILE=file_to_read
cp "$LFILE" /dev/stdout
|
|
|
code |
LFILE=file_to_write
echo "DATA" | cp /dev/stdin "$LFILE"
|
|
|
code |
LFILE=file_to_write
echo "DATA" | ./cp /dev/stdin "$LFILE"
|
|
description |
code |
This can be used to copy and then read or write files from a restricted file systems or with elevated privileges. |
LFILE=file_to_write
TF=$(mktemp)
echo "DATA" > $TF
./cp $TF $LFILE
|
|
|
code |
LFILE=file_to_write
echo "DATA" | sudo cp /dev/stdin "$LFILE"
|
|
description |
code |
This can be used to copy and then read or write files from a restricted file systems or with elevated privileges. |
LFILE=file_to_write
TF=$(mktemp)
echo "DATA" > $TF
sudo cp $TF $LFILE
|
|
|