[Tex/LaTex] How to shift a right-alighned text block to the left

horizontal alignment

I have a right-aligned text (in a right-to-left language) and need to shift it to the left (it is actually a signature under the preface of a book).

if I use flushleft environment, it goes to the left but it also becomes left-aligned while I need to have it right-aligned something like below:

---------------------
---------------------
---------------------
           ----------
------
  ----
 -----

Best Answer

I used a tabular environment to keep the text-alignment and then shifted it to the left inside a flushleft enviornment.

\begin{flushleft}
\begin{tabular} {r}
 احمد پورامینی \\
  دانشگاه صنعتی سیرجان \\
  خرداد 1395
\end{tabular}
\end{flushleft}